mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-07-13 21:50:33 +03:00
treewide: pkgs/development/python-modules: mark broken for darwin
This commit is contained in:
parent
13e0d33703
commit
65db3b17a8
120 changed files with 302 additions and 103 deletions
|
@ -1,4 +1,5 @@
|
||||||
{ lib
|
{ stdenv
|
||||||
|
, lib
|
||||||
, bcrypt
|
, bcrypt
|
||||||
, buildPythonPackage
|
, buildPythonPackage
|
||||||
, cryptography
|
, cryptography
|
||||||
|
@ -77,6 +78,7 @@ buildPythonPackage rec {
|
||||||
];
|
];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
broken = stdenv.isDarwin;
|
||||||
description = "Asynchronous SSHv2 Python client and server library";
|
description = "Asynchronous SSHv2 Python client and server library";
|
||||||
homepage = "https://asyncssh.readthedocs.io/";
|
homepage = "https://asyncssh.readthedocs.io/";
|
||||||
license = licenses.epl20;
|
license = licenses.epl20;
|
||||||
|
|
|
@ -52,6 +52,7 @@ buildPythonPackage rec {
|
||||||
doCheck = false;
|
doCheck = false;
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
broken = stdenv.isDarwin;
|
||||||
homepage = "https://github.com/awslabs/aws-crt-python";
|
homepage = "https://github.com/awslabs/aws-crt-python";
|
||||||
description = "Python bindings for the AWS Common Runtime";
|
description = "Python bindings for the AWS Common Runtime";
|
||||||
license = licenses.asl20;
|
license = licenses.asl20;
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
{ lib
|
{ stdenv
|
||||||
|
, lib
|
||||||
, buildPythonPackage
|
, buildPythonPackage
|
||||||
, fetchFromGitHub
|
, fetchFromGitHub
|
||||||
, scikit-learn
|
, scikit-learn
|
||||||
|
@ -31,6 +32,7 @@ buildPythonPackage rec {
|
||||||
'';
|
'';
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
broken = stdenv.isDarwin;
|
||||||
description = "A Python implementation of global optimization with gaussian processes";
|
description = "A Python implementation of global optimization with gaussian processes";
|
||||||
homepage = "https://github.com/fmfn/BayesianOptimization";
|
homepage = "https://github.com/fmfn/BayesianOptimization";
|
||||||
license = licenses.mit;
|
license = licenses.mit;
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
{ lib, buildPythonPackage, fetchPypi, pythonOlder
|
{ stdenv, lib, buildPythonPackage, fetchPypi, pythonOlder
|
||||||
, pytest, nose, glibcLocales
|
, pytest, nose, glibcLocales
|
||||||
, numpy, scipy, matplotlib, h5py }:
|
, numpy, scipy, matplotlib, h5py }:
|
||||||
|
|
||||||
|
@ -23,6 +23,7 @@ buildPythonPackage rec {
|
||||||
'';
|
'';
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
broken = stdenv.isDarwin;
|
||||||
homepage = "http://www.bayespy.org";
|
homepage = "http://www.bayespy.org";
|
||||||
description = "Variational Bayesian inference tools for Python";
|
description = "Variational Bayesian inference tools for Python";
|
||||||
license = licenses.mit;
|
license = licenses.mit;
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
{ lib, buildPythonPackage, fetchFromGitHub, python-dateutil, jsonref, jsonschema,
|
{ stdenv, lib, buildPythonPackage, fetchFromGitHub, python-dateutil, jsonref, jsonschema,
|
||||||
pyyaml, simplejson, six, pytz, msgpack, swagger-spec-validator, rfc3987,
|
pyyaml, simplejson, six, pytz, msgpack, swagger-spec-validator, rfc3987,
|
||||||
strict-rfc3339, webcolors, mypy-extensions, jsonpointer, idna, pytest, mock,
|
strict-rfc3339, webcolors, mypy-extensions, jsonpointer, idna, pytest, mock,
|
||||||
pytest-benchmark, isPy27, enum34 }:
|
pytest-benchmark, isPy27, enum34 }:
|
||||||
|
@ -44,6 +44,7 @@ buildPythonPackage rec {
|
||||||
] ++ lib.optionals isPy27 [ enum34 ];
|
] ++ lib.optionals isPy27 [ enum34 ];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
broken = stdenv.isDarwin;
|
||||||
description = "Library for adding Swagger support to clients and servers";
|
description = "Library for adding Swagger support to clients and servers";
|
||||||
homepage = "https://github.com/Yelp/bravado-core";
|
homepage = "https://github.com/Yelp/bravado-core";
|
||||||
license = licenses.bsd3;
|
license = licenses.bsd3;
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
{ lib
|
{ stdenv
|
||||||
|
, lib
|
||||||
, fetchPypi
|
, fetchPypi
|
||||||
, buildPythonPackage
|
, buildPythonPackage
|
||||||
, pythonOlder
|
, pythonOlder
|
||||||
|
@ -37,6 +38,7 @@ buildPythonPackage rec {
|
||||||
];
|
];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
broken = stdenv.isDarwin;
|
||||||
description = "Loads cookies from your browser into a cookiejar object";
|
description = "Loads cookies from your browser into a cookiejar object";
|
||||||
homepage = "https://github.com/borisbabic/browser_cookie3";
|
homepage = "https://github.com/borisbabic/browser_cookie3";
|
||||||
license = licenses.gpl3Only;
|
license = licenses.gpl3Only;
|
||||||
|
|
|
@ -107,6 +107,7 @@ let
|
||||||
};
|
};
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
broken = stdenv.isDarwin;
|
||||||
homepage = "https://buildbot.net/";
|
homepage = "https://buildbot.net/";
|
||||||
description = "An open-source continuous integration framework for automating software build, test, and release processes";
|
description = "An open-source continuous integration framework for automating software build, test, and release processes";
|
||||||
maintainers = with maintainers; [ ryansydnor lopsided98 ];
|
maintainers = with maintainers; [ ryansydnor lopsided98 ];
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
{ lib
|
{ stdenv
|
||||||
|
, lib
|
||||||
, billiard
|
, billiard
|
||||||
, boto3
|
, boto3
|
||||||
, buildPythonPackage
|
, buildPythonPackage
|
||||||
|
@ -84,6 +85,7 @@ buildPythonPackage rec {
|
||||||
};
|
};
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
broken = stdenv.isDarwin;
|
||||||
description = "Distributed task queue";
|
description = "Distributed task queue";
|
||||||
homepage = "https://github.com/celery/celery/";
|
homepage = "https://github.com/celery/celery/";
|
||||||
license = licenses.bsd3;
|
license = licenses.bsd3;
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
{ lib
|
{ stdenv
|
||||||
|
, lib
|
||||||
, buildPythonPackage
|
, buildPythonPackage
|
||||||
, fetchPypi
|
, fetchPypi
|
||||||
, fonttools
|
, fonttools
|
||||||
|
@ -32,6 +33,7 @@ buildPythonPackage rec {
|
||||||
pythonImportsCheck = [ "cffsubr" ];
|
pythonImportsCheck = [ "cffsubr" ];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
broken = stdenv.isDarwin;
|
||||||
description = "Standalone CFF subroutinizer based on AFDKO tx";
|
description = "Standalone CFF subroutinizer based on AFDKO tx";
|
||||||
homepage = "https://github.com/adobe-type-tools/cffsubr";
|
homepage = "https://github.com/adobe-type-tools/cffsubr";
|
||||||
license = licenses.asl20;
|
license = licenses.asl20;
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
{ lib
|
{ stdenv
|
||||||
|
, lib
|
||||||
, buildPythonPackage
|
, buildPythonPackage
|
||||||
, fetchPypi
|
, fetchPypi
|
||||||
, cmake
|
, cmake
|
||||||
|
@ -30,6 +31,7 @@ buildPythonPackage rec {
|
||||||
dontConfigure = true;
|
dontConfigure = true;
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
broken = stdenv.isDarwin;
|
||||||
description = "Chia's implementation of BIP 158";
|
description = "Chia's implementation of BIP 158";
|
||||||
homepage = "https://www.chia.net/";
|
homepage = "https://www.chia.net/";
|
||||||
license = licenses.asl20;
|
license = licenses.asl20;
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
{ lib
|
{ stdenv
|
||||||
|
, lib
|
||||||
, substituteAll
|
, substituteAll
|
||||||
, buildPythonPackage
|
, buildPythonPackage
|
||||||
, fetchPypi
|
, fetchPypi
|
||||||
|
@ -47,6 +48,7 @@ buildPythonPackage rec {
|
||||||
dontConfigure = true;
|
dontConfigure = true;
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
broken = stdenv.isDarwin;
|
||||||
description = "Chia proof of space library";
|
description = "Chia proof of space library";
|
||||||
homepage = "https://www.chia.net/";
|
homepage = "https://www.chia.net/";
|
||||||
license = licenses.asl20;
|
license = licenses.asl20;
|
||||||
|
|
|
@ -45,6 +45,7 @@ buildPythonPackage rec {
|
||||||
dontConfigure = true;
|
dontConfigure = true;
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
broken = stdenv.isDarwin;
|
||||||
description = "Chia verifiable delay function utilities";
|
description = "Chia verifiable delay function utilities";
|
||||||
homepage = "https://www.chia.net/";
|
homepage = "https://www.chia.net/";
|
||||||
license = licenses.asl20;
|
license = licenses.asl20;
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
{ lib, buildPythonPackage, fetchPypi, pyyaml, openssh
|
{ stdenv, lib, buildPythonPackage, fetchPypi, pyyaml, openssh
|
||||||
, nose, bc, hostname, coreutils, bash, gnused
|
, nose, bc, hostname, coreutils, bash, gnused
|
||||||
}:
|
}:
|
||||||
|
|
||||||
|
@ -81,6 +81,7 @@ buildPythonPackage rec {
|
||||||
'';
|
'';
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
broken = stdenv.isDarwin;
|
||||||
description = "Scalable Python framework for cluster administration";
|
description = "Scalable Python framework for cluster administration";
|
||||||
homepage = "https://cea-hpc.github.io/clustershell";
|
homepage = "https://cea-hpc.github.io/clustershell";
|
||||||
license = licenses.lgpl21;
|
license = licenses.lgpl21;
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
{ lib
|
{ stdenv
|
||||||
|
, lib
|
||||||
, fetchFromGitHub
|
, fetchFromGitHub
|
||||||
, buildPythonPackage
|
, buildPythonPackage
|
||||||
, rustPlatform
|
, rustPlatform
|
||||||
|
@ -68,6 +69,7 @@ buildPythonPackage rec {
|
||||||
pythonImportsCheck = [ "clvm_rs" ];
|
pythonImportsCheck = [ "clvm_rs" ];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
broken = stdenv.isDarwin;
|
||||||
homepage = "https://chialisp.com/";
|
homepage = "https://chialisp.com/";
|
||||||
description = "Rust implementation of clvm";
|
description = "Rust implementation of clvm";
|
||||||
license = licenses.asl20;
|
license = licenses.asl20;
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
{ lib, buildPythonPackage, fetchPypi, six, cmigemo, pytestCheckHook }:
|
{ stdenv, lib, buildPythonPackage, fetchPypi, six, cmigemo, pytestCheckHook }:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "cmigemo";
|
pname = "cmigemo";
|
||||||
|
@ -28,6 +28,7 @@ buildPythonPackage rec {
|
||||||
pythonImportsCheck = [ "cmigemo" ];
|
pythonImportsCheck = [ "cmigemo" ];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
broken = stdenv.isDarwin;
|
||||||
homepage = "https://github.com/mooz/python-cmigemo";
|
homepage = "https://github.com/mooz/python-cmigemo";
|
||||||
description = "A pure python binding for C/Migemo";
|
description = "A pure python binding for C/Migemo";
|
||||||
license = licenses.mit;
|
license = licenses.mit;
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
{ lib, buildPythonPackage, fetchPypi, pythonOlder, blessings, mock, nose, pyte, cwcwidth, typing ? null}:
|
{ stdenv, lib, buildPythonPackage, fetchPypi, pythonOlder, blessings, mock, nose, pyte, cwcwidth, typing ? null}:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "curtsies";
|
pname = "curtsies";
|
||||||
|
@ -18,6 +18,7 @@ buildPythonPackage rec {
|
||||||
'';
|
'';
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
broken = stdenv.isDarwin;
|
||||||
description = "Curses-like terminal wrapper, with colored strings!";
|
description = "Curses-like terminal wrapper, with colored strings!";
|
||||||
homepage = "https://github.com/bpython/curtsies";
|
homepage = "https://github.com/bpython/curtsies";
|
||||||
license = licenses.mit;
|
license = licenses.mit;
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
{ lib
|
{ stdenv
|
||||||
|
, lib
|
||||||
, buildPythonPackage
|
, buildPythonPackage
|
||||||
, fetchFromGitHub
|
, fetchFromGitHub
|
||||||
, plotly
|
, plotly
|
||||||
|
@ -53,6 +54,7 @@ buildPythonPackage rec {
|
||||||
pythonImportsCheck = [ "dash" ];
|
pythonImportsCheck = [ "dash" ];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
broken = stdenv.isDarwin;
|
||||||
description = "Python framework for building analytical web applications";
|
description = "Python framework for building analytical web applications";
|
||||||
homepage = "https://dash.plot.ly/";
|
homepage = "https://dash.plot.ly/";
|
||||||
license = licenses.mit;
|
license = licenses.mit;
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
{ lib
|
{ stdenv
|
||||||
|
, lib
|
||||||
, buildPythonPackage
|
, buildPythonPackage
|
||||||
, dask
|
, dask
|
||||||
, distributed
|
, distributed
|
||||||
|
@ -41,6 +42,7 @@ buildPythonPackage rec {
|
||||||
pythonImportsCheck = [ "dask_jobqueue" ];
|
pythonImportsCheck = [ "dask_jobqueue" ];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
broken = stdenv.isDarwin;
|
||||||
homepage = "https://github.com/dask/dask-jobqueue";
|
homepage = "https://github.com/dask/dask-jobqueue";
|
||||||
description = "Deploy Dask on job schedulers like PBS, SLURM, and SGE";
|
description = "Deploy Dask on job schedulers like PBS, SLURM, and SGE";
|
||||||
license = licenses.bsd3;
|
license = licenses.bsd3;
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
{ lib
|
{ stdenv
|
||||||
|
, lib
|
||||||
, buildPythonPackage
|
, buildPythonPackage
|
||||||
, fetchFromGitHub
|
, fetchFromGitHub
|
||||||
, pytestCheckHook
|
, pytestCheckHook
|
||||||
|
@ -34,6 +35,7 @@ buildPythonPackage rec {
|
||||||
pythonImportsCheck = [ "dask_yarn" ];
|
pythonImportsCheck = [ "dask_yarn" ];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
broken = stdenv.isDarwin;
|
||||||
description = "Deploy dask on YARN clusters";
|
description = "Deploy dask on YARN clusters";
|
||||||
longDescription = ''Dask-Yarn deploys Dask on YARN clusters,
|
longDescription = ''Dask-Yarn deploys Dask on YARN clusters,
|
||||||
such as are found in traditional Hadoop installations.
|
such as are found in traditional Hadoop installations.
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
{ lib
|
{ stdenv
|
||||||
|
, lib
|
||||||
, buildPythonPackage
|
, buildPythonPackage
|
||||||
, fetchFromGitHub
|
, fetchFromGitHub
|
||||||
, python
|
, python
|
||||||
|
@ -32,6 +33,7 @@ buildPythonPackage rec {
|
||||||
'';
|
'';
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
broken = stdenv.isDarwin;
|
||||||
homepage = "https://github.com/altdesktop/python-dbus-next";
|
homepage = "https://github.com/altdesktop/python-dbus-next";
|
||||||
description = "A zero-dependency DBus library for Python with asyncio support";
|
description = "A zero-dependency DBus library for Python with asyncio support";
|
||||||
license = licenses.mit;
|
license = licenses.mit;
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
{ lib
|
{ stdenv
|
||||||
|
, lib
|
||||||
, buildPythonPackage
|
, buildPythonPackage
|
||||||
, fetchFromGitHub
|
, fetchFromGitHub
|
||||||
, anytree
|
, anytree
|
||||||
|
@ -92,6 +93,7 @@ buildPythonPackage rec {
|
||||||
pythonImportsCheck = [ "devito" ];
|
pythonImportsCheck = [ "devito" ];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
broken = stdenv.isDarwin;
|
||||||
homepage = "https://www.devitoproject.org/";
|
homepage = "https://www.devitoproject.org/";
|
||||||
description = "Code generation framework for automated finite difference computation";
|
description = "Code generation framework for automated finite difference computation";
|
||||||
license = licenses.mit;
|
license = licenses.mit;
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
{ abseil-cpp
|
{ stdenv
|
||||||
|
, abseil-cpp
|
||||||
, absl-py
|
, absl-py
|
||||||
, attrs
|
, attrs
|
||||||
, buildPythonPackage
|
, buildPythonPackage
|
||||||
|
@ -48,6 +49,7 @@ buildPythonPackage rec {
|
||||||
pythonImportsCheck = [ "tree" ];
|
pythonImportsCheck = [ "tree" ];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
broken = stdenv.isDarwin;
|
||||||
description = "Tree is a library for working with nested data structures.";
|
description = "Tree is a library for working with nested data structures.";
|
||||||
homepage = "https://github.com/deepmind/tree";
|
homepage = "https://github.com/deepmind/tree";
|
||||||
license = licenses.asl20;
|
license = licenses.asl20;
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
{ lib, buildPythonPackage, fetchFromGitLab, pythonOlder, pytestCheckHook, pybind11, numpy }:
|
{ stdenv, lib, buildPythonPackage, fetchFromGitLab, pythonOlder, pytestCheckHook, pybind11, numpy }:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "ducc0";
|
pname = "ducc0";
|
||||||
|
@ -22,6 +22,7 @@ buildPythonPackage rec {
|
||||||
pythonImportsCheck = [ "ducc0" ];
|
pythonImportsCheck = [ "ducc0" ];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
broken = stdenv.isDarwin;
|
||||||
homepage = "https://gitlab.mpcdf.mpg.de/mtr/ducc";
|
homepage = "https://gitlab.mpcdf.mpg.de/mtr/ducc";
|
||||||
description = "Efficient algorithms for Fast Fourier transforms and more";
|
description = "Efficient algorithms for Fast Fourier transforms and more";
|
||||||
license = licenses.gpl2Plus;
|
license = licenses.gpl2Plus;
|
||||||
|
|
|
@ -56,6 +56,7 @@ buildPythonPackage rec {
|
||||||
|
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
broken = stdenv.isDarwin;
|
||||||
homepage = "https://www.etebase.com/";
|
homepage = "https://www.etebase.com/";
|
||||||
description = "A Python client library for Etebase";
|
description = "A Python client library for Etebase";
|
||||||
license = licenses.bsd3;
|
license = licenses.bsd3;
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
{ lib
|
{ stdenv
|
||||||
|
, lib
|
||||||
, buildPythonPackage
|
, buildPythonPackage
|
||||||
, fetchFromGitHub
|
, fetchFromGitHub
|
||||||
, pytestCheckHook
|
, pytestCheckHook
|
||||||
|
@ -40,6 +41,7 @@ buildPythonPackage rec {
|
||||||
];
|
];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
broken = stdenv.isDarwin;
|
||||||
description = "Bindings for evtx";
|
description = "Bindings for evtx";
|
||||||
homepage = "https://github.com/omerbenamram/pyevtx-rs";
|
homepage = "https://github.com/omerbenamram/pyevtx-rs";
|
||||||
license = with licenses; [ mit ];
|
license = with licenses; [ mit ];
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
{ lib
|
{ stdenv
|
||||||
|
, lib
|
||||||
, fetchFromGitHub
|
, fetchFromGitHub
|
||||||
, buildPythonPackage
|
, buildPythonPackage
|
||||||
, pkgconfig
|
, pkgconfig
|
||||||
|
@ -53,6 +54,7 @@ buildPythonPackage rec {
|
||||||
'';
|
'';
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
broken = stdenv.isDarwin;
|
||||||
description = "A Python interface for fplll";
|
description = "A Python interface for fplll";
|
||||||
changelog = "https://github.com/fplll/fpylll/releases/tag/${version}";
|
changelog = "https://github.com/fplll/fpylll/releases/tag/${version}";
|
||||||
homepage = "https://github.com/fplll/fpylll";
|
homepage = "https://github.com/fplll/fpylll";
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
{ lib, buildPythonPackage, fetchPypi, pkg-config, fuse }:
|
{ stdenv, lib, buildPythonPackage, fetchPypi, pkg-config, fuse }:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "fuse-python";
|
pname = "fuse-python";
|
||||||
|
@ -18,6 +18,7 @@ buildPythonPackage rec {
|
||||||
pythonImportsCheck = [ "fuse" ];
|
pythonImportsCheck = [ "fuse" ];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
broken = stdenv.isDarwin;
|
||||||
description = "Python bindings for FUSE";
|
description = "Python bindings for FUSE";
|
||||||
homepage = "https://github.com/libfuse/python-fuse";
|
homepage = "https://github.com/libfuse/python-fuse";
|
||||||
license = licenses.lgpl21;
|
license = licenses.lgpl21;
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
{ lib
|
{ stdenv
|
||||||
|
, lib
|
||||||
, fetchFromGitHub
|
, fetchFromGitHub
|
||||||
, buildPythonPackage
|
, buildPythonPackage
|
||||||
, rustPlatform
|
, rustPlatform
|
||||||
|
@ -37,6 +38,7 @@ buildPythonPackage rec {
|
||||||
pythonImportsCheck = [ "gb_io" ];
|
pythonImportsCheck = [ "gb_io" ];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
broken = stdenv.isDarwin;
|
||||||
homepage = "https://github.com/althonos/gb-io.py";
|
homepage = "https://github.com/althonos/gb-io.py";
|
||||||
description = "A Python interface to gb-io, a fast GenBank parser written in Rust";
|
description = "A Python interface to gb-io, a fast GenBank parser written in Rust";
|
||||||
license = licenses.mit;
|
license = licenses.mit;
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
{ lib
|
{ stdenv
|
||||||
|
, lib
|
||||||
, buildPythonPackage
|
, buildPythonPackage
|
||||||
, fetchFromGitHub
|
, fetchFromGitHub
|
||||||
, pygobject3
|
, pygobject3
|
||||||
|
@ -35,6 +36,7 @@ buildPythonPackage rec {
|
||||||
pythonImportsCheck = [ "gbulb" ];
|
pythonImportsCheck = [ "gbulb" ];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
broken = stdenv.isDarwin;
|
||||||
description = "GLib implementation of PEP 3156";
|
description = "GLib implementation of PEP 3156";
|
||||||
homepage = "https://github.com/beeware/gbulb";
|
homepage = "https://github.com/beeware/gbulb";
|
||||||
license = licenses.asl20;
|
license = licenses.asl20;
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
{ lib
|
{ stdenv
|
||||||
|
, lib
|
||||||
, buildPythonApplication
|
, buildPythonApplication
|
||||||
, click
|
, click
|
||||||
, fetchPypi
|
, fetchPypi
|
||||||
|
@ -60,6 +61,7 @@ buildPythonApplication rec {
|
||||||
];
|
];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
broken = stdenv.isDarwin;
|
||||||
description = "Gigalixir Command-Line Interface";
|
description = "Gigalixir Command-Line Interface";
|
||||||
homepage = "https://github.com/gigalixir/gigalixir-cli";
|
homepage = "https://github.com/gigalixir/gigalixir-cli";
|
||||||
license = licenses.mit;
|
license = licenses.mit;
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
{ lib
|
{ stdenv
|
||||||
|
, lib
|
||||||
, buildPythonPackage
|
, buildPythonPackage
|
||||||
, cargo
|
, cargo
|
||||||
, cffi
|
, cffi
|
||||||
|
@ -58,6 +59,7 @@ buildPythonPackage rec {
|
||||||
];
|
];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
broken = stdenv.isDarwin;
|
||||||
description = "Telemetry client libraries and are a part of the Glean project";
|
description = "Telemetry client libraries and are a part of the Glean project";
|
||||||
homepage = "https://mozilla.github.io/glean/book/index.html";
|
homepage = "https://mozilla.github.io/glean/book/index.html";
|
||||||
license = licenses.mpl20;
|
license = licenses.mpl20;
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
{ buildPythonPackage, fetchFromGitHub, lib, flask, flask-caching, cairocffi, pyparsing, pytz, pyyaml
|
{ stdenv, buildPythonPackage, fetchFromGitHub, lib, flask, flask-caching, cairocffi, pyparsing, pytz, pyyaml
|
||||||
, raven, six, structlog, tzlocal, nose, mock, cairo, isPyPy
|
, raven, six, structlog, tzlocal, nose, mock, cairo, isPyPy
|
||||||
}:
|
}:
|
||||||
|
|
||||||
|
@ -38,6 +38,7 @@ buildPythonPackage rec {
|
||||||
LD_LIBRARY_PATH = "${cairo.out}/lib";
|
LD_LIBRARY_PATH = "${cairo.out}/lib";
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
broken = stdenv.isDarwin;
|
||||||
description = "Graphite-web, without the interface. Just the rendering HTTP API";
|
description = "Graphite-web, without the interface. Just the rendering HTTP API";
|
||||||
homepage = "https://github.com/brutasse/graphite-api";
|
homepage = "https://github.com/brutasse/graphite-api";
|
||||||
license = licenses.asl20;
|
license = licenses.asl20;
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
{ lib
|
{ stdenv
|
||||||
|
, lib
|
||||||
, buildPythonPackage
|
, buildPythonPackage
|
||||||
, fetchPypi
|
, fetchPypi
|
||||||
, django
|
, django
|
||||||
|
@ -61,6 +62,7 @@ buildPythonPackage rec {
|
||||||
pythonImportsCheck = [ "graphite" ];
|
pythonImportsCheck = [ "graphite" ];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
broken = stdenv.isDarwin;
|
||||||
homepage = "http://graphiteapp.org/";
|
homepage = "http://graphiteapp.org/";
|
||||||
description = "Enterprise scalable realtime graphing";
|
description = "Enterprise scalable realtime graphing";
|
||||||
maintainers = with maintainers; [ offline basvandijk ];
|
maintainers = with maintainers; [ offline basvandijk ];
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
{ lib
|
{ stdenv
|
||||||
|
, lib
|
||||||
, buildPythonPackage
|
, buildPythonPackage
|
||||||
, pythonOlder
|
, pythonOlder
|
||||||
, fetchFromGitHub
|
, fetchFromGitHub
|
||||||
|
@ -41,6 +42,7 @@ buildPythonPackage rec {
|
||||||
];
|
];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
broken = stdenv.isDarwin;
|
||||||
description = "Discover, connect and control Gree based minisplit systems";
|
description = "Discover, connect and control Gree based minisplit systems";
|
||||||
homepage = "https://github.com/cmroche/greeclimate";
|
homepage = "https://github.com/cmroche/greeclimate";
|
||||||
changelog = "https://github.com/cmroche/greeclimate/blob/${src.rev}/CHANGELOG.md";
|
changelog = "https://github.com/cmroche/greeclimate/blob/${src.rev}/CHANGELOG.md";
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
{ lib
|
{ stdenv
|
||||||
|
, lib
|
||||||
, appdirs
|
, appdirs
|
||||||
, buildPythonPackage
|
, buildPythonPackage
|
||||||
, cachelib
|
, cachelib
|
||||||
|
@ -67,6 +68,7 @@ buildPythonPackage rec {
|
||||||
];
|
];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
broken = stdenv.isDarwin;
|
||||||
description = "Instant coding answers via the command line";
|
description = "Instant coding answers via the command line";
|
||||||
homepage = "https://github.com/gleitz/howdoi";
|
homepage = "https://github.com/gleitz/howdoi";
|
||||||
license = licenses.mit;
|
license = licenses.mit;
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
{ lib
|
{ stdenv
|
||||||
|
, lib
|
||||||
, antlr4-python3-runtime
|
, antlr4-python3-runtime
|
||||||
, buildPythonPackage
|
, buildPythonPackage
|
||||||
, fetchFromGitHub
|
, fetchFromGitHub
|
||||||
|
@ -54,6 +55,7 @@ buildPythonPackage rec {
|
||||||
];
|
];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
broken = stdenv.isDarwin;
|
||||||
description = "A framework for configuring complex applications";
|
description = "A framework for configuring complex applications";
|
||||||
homepage = "https://hydra.cc";
|
homepage = "https://hydra.cc";
|
||||||
license = licenses.mit;
|
license = licenses.mit;
|
||||||
|
|
|
@ -51,6 +51,7 @@ buildPythonPackage rec {
|
||||||
];
|
];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
broken = stdenv.isDarwin;
|
||||||
description = "Open source IFC library and geometry engine";
|
description = "Open source IFC library and geometry engine";
|
||||||
homepage = "http://ifcopenshell.org/";
|
homepage = "http://ifcopenshell.org/";
|
||||||
license = licenses.lgpl3;
|
license = licenses.lgpl3;
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
{ lib, fetchPypi, buildPythonPackage
|
{ stdenv
|
||||||
|
, lib, fetchPypi, buildPythonPackage
|
||||||
, pytest
|
, pytest
|
||||||
, numpy
|
, numpy
|
||||||
, cython
|
, cython
|
||||||
|
@ -30,6 +31,7 @@ buildPythonPackage rec {
|
||||||
'';
|
'';
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
broken = stdenv.isDarwin;
|
||||||
description = "Block-oriented, in-memory buffer transformation, compression, and decompression functions";
|
description = "Block-oriented, in-memory buffer transformation, compression, and decompression functions";
|
||||||
homepage = "https://www.lfd.uci.edu/~gohlke/";
|
homepage = "https://www.lfd.uci.edu/~gohlke/";
|
||||||
maintainers = [ maintainers.tbenst ];
|
maintainers = [ maintainers.tbenst ];
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
{ lib
|
{ stdenv
|
||||||
|
, lib
|
||||||
, buildPythonPackage
|
, buildPythonPackage
|
||||||
, fetchFromGitHub
|
, fetchFromGitHub
|
||||||
, networkx
|
, networkx
|
||||||
|
@ -25,6 +26,7 @@ buildPythonPackage {
|
||||||
pythonImportsCheck = [ "importlab" ];
|
pythonImportsCheck = [ "importlab" ];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
broken = stdenv.isDarwin;
|
||||||
description = "A library that automatically infers dependencies for Python files";
|
description = "A library that automatically infers dependencies for Python files";
|
||||||
homepage = "https://github.com/google/importlab";
|
homepage = "https://github.com/google/importlab";
|
||||||
license = licenses.mit;
|
license = licenses.mit;
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
{ lib
|
{ stdenv
|
||||||
|
, lib
|
||||||
, buildPythonPackage
|
, buildPythonPackage
|
||||||
, fetchFromGitHub
|
, fetchFromGitHub
|
||||||
, pythonOlder
|
, pythonOlder
|
||||||
|
@ -82,6 +83,7 @@ buildPythonPackage rec {
|
||||||
pythonImportsCheck = [ "ipfshttpclient" ];
|
pythonImportsCheck = [ "ipfshttpclient" ];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
broken = stdenv.isDarwin;
|
||||||
description = "A python client library for the IPFS API";
|
description = "A python client library for the IPFS API";
|
||||||
homepage = "https://github.com/ipfs-shipyard/py-ipfs-http-client";
|
homepage = "https://github.com/ipfs-shipyard/py-ipfs-http-client";
|
||||||
license = licenses.mit;
|
license = licenses.mit;
|
||||||
|
|
|
@ -91,6 +91,7 @@ buildPythonPackage rec {
|
||||||
pythonImportsCheck = [ "johnnycanencrypt" ];
|
pythonImportsCheck = [ "johnnycanencrypt" ];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
broken = stdenv.isDarwin;
|
||||||
homepage = "https://github.com/kushaldas/johnnycanencrypt";
|
homepage = "https://github.com/kushaldas/johnnycanencrypt";
|
||||||
description = "Python module for OpenPGP written in Rust";
|
description = "Python module for OpenPGP written in Rust";
|
||||||
license = licenses.gpl3Plus;
|
license = licenses.gpl3Plus;
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
{ lib, buildPythonPackage, fetchFromGitHub, pytestCheckHook, six, }:
|
{ stdenv, lib, buildPythonPackage, fetchFromGitHub, pytestCheckHook, six, }:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "jsonstreams";
|
pname = "jsonstreams";
|
||||||
|
@ -17,6 +17,7 @@ buildPythonPackage rec {
|
||||||
pytestFlagsArray = [ "tests --doctest-modules jsonstreams" ];
|
pytestFlagsArray = [ "tests --doctest-modules jsonstreams" ];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
broken = stdenv.isDarwin;
|
||||||
description = "A JSON streaming writer";
|
description = "A JSON streaming writer";
|
||||||
homepage = "https://github.com/dcbaker/jsonstreams";
|
homepage = "https://github.com/dcbaker/jsonstreams";
|
||||||
license = licenses.mit;
|
license = licenses.mit;
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
{ lib
|
{ stdenv
|
||||||
|
, lib
|
||||||
, buildPythonPackage
|
, buildPythonPackage
|
||||||
, fetchPypi
|
, fetchPypi
|
||||||
, jsonschema
|
, jsonschema
|
||||||
|
@ -44,6 +45,7 @@ buildPythonPackage rec {
|
||||||
__darwinAllowLocalNetworking = true;
|
__darwinAllowLocalNetworking = true;
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
broken = stdenv.isDarwin;
|
||||||
description = "JupyterLab Server";
|
description = "JupyterLab Server";
|
||||||
homepage = "https://jupyter.org";
|
homepage = "https://jupyter.org";
|
||||||
license = licenses.bsdOriginal;
|
license = licenses.bsdOriginal;
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
{ lib
|
{ stdenv
|
||||||
|
, lib
|
||||||
, buildPythonPackage
|
, buildPythonPackage
|
||||||
, fetchPypi
|
, fetchPypi
|
||||||
, substituteAll
|
, substituteAll
|
||||||
|
@ -35,6 +36,7 @@ buildPythonPackage rec {
|
||||||
pythonImportsCheck = [ "k5test" ];
|
pythonImportsCheck = [ "k5test" ];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
broken = stdenv.isDarwin;
|
||||||
description = "Library for setting up self-contained Kerberos 5 environment";
|
description = "Library for setting up self-contained Kerberos 5 environment";
|
||||||
homepage = "https://github.com/pythongssapi/k5test";
|
homepage = "https://github.com/pythongssapi/k5test";
|
||||||
license = licenses.mit;
|
license = licenses.mit;
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
{ lib, buildPythonPackage, fetchPypi, python
|
{ stdenv, lib, buildPythonPackage, fetchPypi, python
|
||||||
, attrs, enum34, hyperlink, incremental, six, twisted, typing, tubes, werkzeug, zope_interface
|
, attrs, enum34, hyperlink, incremental, six, twisted, typing, tubes, werkzeug, zope_interface
|
||||||
, hypothesis, treq
|
, hypothesis, treq
|
||||||
}:
|
}:
|
||||||
|
@ -21,6 +21,7 @@ buildPythonPackage rec {
|
||||||
'';
|
'';
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
broken = stdenv.isDarwin;
|
||||||
description = "Klein Web Micro-Framework";
|
description = "Klein Web Micro-Framework";
|
||||||
homepage = "https://github.com/twisted/klein";
|
homepage = "https://github.com/twisted/klein";
|
||||||
license = licenses.mit;
|
license = licenses.mit;
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
{ lib, buildPythonPackage, fetchPypi }:
|
{ stdenv, lib, buildPythonPackage, fetchPypi }:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "miniupnpc";
|
pname = "miniupnpc";
|
||||||
|
@ -10,6 +10,7 @@ buildPythonPackage rec {
|
||||||
};
|
};
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
broken = stdenv.isDarwin;
|
||||||
description = "miniUPnP client";
|
description = "miniUPnP client";
|
||||||
homepage = "http://miniupnp.free.fr/";
|
homepage = "http://miniupnp.free.fr/";
|
||||||
license = licenses.mit;
|
license = licenses.mit;
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
{ lib
|
{ stdenv
|
||||||
|
, lib
|
||||||
, buildPythonPackage
|
, buildPythonPackage
|
||||||
, fetchPypi
|
, fetchPypi
|
||||||
, zetup
|
, zetup
|
||||||
|
@ -27,6 +28,7 @@ buildPythonPackage rec {
|
||||||
pythonImportsCheck = [ "modeled" ];
|
pythonImportsCheck = [ "modeled" ];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
broken = stdenv.isDarwin;
|
||||||
description = "Universal data modeling for Python";
|
description = "Universal data modeling for Python";
|
||||||
homepage = "https://github.com/modeled/modeled";
|
homepage = "https://github.com/modeled/modeled";
|
||||||
license = licenses.lgpl3Only;
|
license = licenses.lgpl3Only;
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
{ lib
|
{ stdenv
|
||||||
|
, lib
|
||||||
, aiohttp
|
, aiohttp
|
||||||
, buildPythonPackage
|
, buildPythonPackage
|
||||||
, fetchFromGitHub
|
, fetchFromGitHub
|
||||||
|
@ -47,6 +48,7 @@ buildPythonPackage rec {
|
||||||
];
|
];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
broken = stdenv.isDarwin;
|
||||||
description = "Python library for motionEye";
|
description = "Python library for motionEye";
|
||||||
homepage = "https://github.com/dermotduffy/motioneye-client";
|
homepage = "https://github.com/dermotduffy/motioneye-client";
|
||||||
license = with licenses; [ mit ];
|
license = with licenses; [ mit ];
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
{ lib
|
{ stdenv
|
||||||
|
, lib
|
||||||
, buildPythonPackage
|
, buildPythonPackage
|
||||||
, pyperclip
|
, pyperclip
|
||||||
, fetchFromGitHub
|
, fetchFromGitHub
|
||||||
|
@ -32,6 +33,7 @@ buildPythonPackage rec {
|
||||||
];
|
];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
broken = stdenv.isDarwin;
|
||||||
description = "An application to display XY position and RGB color information for the pixel currently under the mouse. Works on Python 2 and 3.";
|
description = "An application to display XY position and RGB color information for the pixel currently under the mouse. Works on Python 2 and 3.";
|
||||||
homepage = "https://github.com/asweigart/mouseinfo";
|
homepage = "https://github.com/asweigart/mouseinfo";
|
||||||
license = licenses.gpl3;
|
license = licenses.gpl3;
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
{ lib
|
{ stdenv
|
||||||
|
, lib
|
||||||
, buildPythonPackage
|
, buildPythonPackage
|
||||||
, django
|
, django
|
||||||
, dnspython
|
, dnspython
|
||||||
|
@ -43,6 +44,7 @@ buildPythonPackage rec {
|
||||||
doCheck = false;
|
doCheck = false;
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
broken = stdenv.isDarwin;
|
||||||
description = "A MySQL driver";
|
description = "A MySQL driver";
|
||||||
longDescription = ''
|
longDescription = ''
|
||||||
A MySQL driver that does not depend on MySQL C client libraries and
|
A MySQL driver that does not depend on MySQL C client libraries and
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
{ lib
|
{ stdenv
|
||||||
|
, lib
|
||||||
, buildPythonPackage
|
, buildPythonPackage
|
||||||
, fetchFromGitHub
|
, fetchFromGitHub
|
||||||
, fetchpatch
|
, fetchpatch
|
||||||
|
@ -58,6 +59,7 @@ buildPythonPackage rec {
|
||||||
];
|
];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
broken = stdenv.isDarwin;
|
||||||
description = "Library that is a collection of objects for common network automation tasks";
|
description = "Library that is a collection of objects for common network automation tasks";
|
||||||
homepage = "https://github.com/networktocode/netutils";
|
homepage = "https://github.com/networktocode/netutils";
|
||||||
license = licenses.asl20;
|
license = licenses.asl20;
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
{ lib
|
{ stdenv
|
||||||
|
, lib
|
||||||
, buildPythonPackage
|
, buildPythonPackage
|
||||||
, fetchPypi
|
, fetchPypi
|
||||||
, nose
|
, nose
|
||||||
|
@ -23,6 +24,7 @@ buildPythonPackage rec {
|
||||||
doCheck = !isPy3k;
|
doCheck = !isPy3k;
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
broken = stdenv.isDarwin;
|
||||||
homepage = "https://github.com/erikrose/nose-progressive";
|
homepage = "https://github.com/erikrose/nose-progressive";
|
||||||
description = "A testrunner with a progress bar and smarter tracebacks";
|
description = "A testrunner with a progress bar and smarter tracebacks";
|
||||||
license = licenses.mit;
|
license = licenses.mit;
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
{ lib
|
{ stdenv
|
||||||
|
, lib
|
||||||
|
|
||||||
, buildPythonPackage
|
, buildPythonPackage
|
||||||
, notmuch
|
, notmuch
|
||||||
|
@ -25,6 +26,7 @@ buildPythonPackage {
|
||||||
pythonImportsCheck = [ "notmuch2" ];
|
pythonImportsCheck = [ "notmuch2" ];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
broken = stdenv.isDarwin;
|
||||||
description = "Pythonic bindings for the notmuch mail database using CFFI";
|
description = "Pythonic bindings for the notmuch mail database using CFFI";
|
||||||
homepage = "https://notmuchmail.org/";
|
homepage = "https://notmuchmail.org/";
|
||||||
license = licenses.gpl3;
|
license = licenses.gpl3;
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
{ lib
|
{ stdenv
|
||||||
|
, lib
|
||||||
, buildPythonPackage
|
, buildPythonPackage
|
||||||
, fetchPypi
|
, fetchPypi
|
||||||
, scipy
|
, scipy
|
||||||
|
@ -39,6 +40,7 @@ buildPythonPackage rec {
|
||||||
];
|
];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
broken = stdenv.isDarwin;
|
||||||
description = "Extends Numba to make it aware of SciPy";
|
description = "Extends Numba to make it aware of SciPy";
|
||||||
homepage = "https://github.com/numba/numba-scipy";
|
homepage = "https://github.com/numba/numba-scipy";
|
||||||
changelog = "https://github.com/numba/numba-scipy/blob/master/CHANGE_LOG";
|
changelog = "https://github.com/numba/numba-scipy/blob/master/CHANGE_LOG";
|
||||||
|
|
|
@ -115,6 +115,7 @@ buildPythonPackage rec {
|
||||||
pythonImportsCheck = [ "opensfm" ];
|
pythonImportsCheck = [ "opensfm" ];
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
|
broken = stdenv.isDarwin;
|
||||||
maintainers = [ lib.maintainers.SomeoneSerge ];
|
maintainers = [ lib.maintainers.SomeoneSerge ];
|
||||||
license = lib.licenses.bsd2;
|
license = lib.licenses.bsd2;
|
||||||
changelog = "https://github.com/mapillary/OpenSfM/blob/${src.rev}/CHANGELOG.md";
|
changelog = "https://github.com/mapillary/OpenSfM/blob/${src.rev}/CHANGELOG.md";
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
{ lib
|
{ stdenv
|
||||||
|
, lib
|
||||||
, buildPythonPackage
|
, buildPythonPackage
|
||||||
, fetchFromGitHub
|
, fetchFromGitHub
|
||||||
, cliff
|
, cliff
|
||||||
|
@ -55,6 +56,7 @@ buildPythonPackage rec {
|
||||||
pythonImportsCheck = [ "osc_lib" ];
|
pythonImportsCheck = [ "osc_lib" ];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
broken = stdenv.isDarwin;
|
||||||
description = "OpenStackClient Library";
|
description = "OpenStackClient Library";
|
||||||
homepage = "https://github.com/openstack/osc-lib";
|
homepage = "https://github.com/openstack/osc-lib";
|
||||||
license = licenses.asl20;
|
license = licenses.asl20;
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
{ lib, buildPythonPackage, fetchFromGitHub, bashInteractive, urlgrabber
|
{ stdenv, lib, buildPythonPackage, fetchFromGitHub, bashInteractive, urlgrabber
|
||||||
, m2crypto, rpm, chardet
|
, m2crypto, rpm, chardet
|
||||||
}:
|
}:
|
||||||
|
|
||||||
|
@ -31,6 +31,7 @@ buildPythonPackage rec {
|
||||||
'';
|
'';
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
broken = stdenv.isDarwin;
|
||||||
homepage = "https://github.com/openSUSE/osc";
|
homepage = "https://github.com/openSUSE/osc";
|
||||||
description = "opensuse-commander with svn like handling";
|
description = "opensuse-commander with svn like handling";
|
||||||
maintainers = [ maintainers.peti ];
|
maintainers = [ maintainers.peti ];
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
{ lib
|
{ stdenv
|
||||||
|
, lib
|
||||||
, buildPythonPackage
|
, buildPythonPackage
|
||||||
, fetchPypi
|
, fetchPypi
|
||||||
, bash
|
, bash
|
||||||
|
@ -62,6 +63,7 @@ buildPythonPackage rec {
|
||||||
pythonImportsCheck = [ "oslo_concurrency" ];
|
pythonImportsCheck = [ "oslo_concurrency" ];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
broken = stdenv.isDarwin;
|
||||||
description = "Oslo Concurrency library";
|
description = "Oslo Concurrency library";
|
||||||
homepage = "https://github.com/openstack/oslo.concurrency";
|
homepage = "https://github.com/openstack/oslo.concurrency";
|
||||||
license = licenses.asl20;
|
license = licenses.asl20;
|
||||||
|
|
|
@ -53,6 +53,7 @@ buildPythonPackage rec {
|
||||||
];
|
];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
broken = stdenv.isDarwin;
|
||||||
description = "oslo.log library";
|
description = "oslo.log library";
|
||||||
homepage = "https://github.com/openstack/oslo.log";
|
homepage = "https://github.com/openstack/oslo.log";
|
||||||
license = licenses.asl20;
|
license = licenses.asl20;
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
{ lib
|
{ stdenv
|
||||||
|
, lib
|
||||||
, buildPythonPackage
|
, buildPythonPackage
|
||||||
, fetchPypi
|
, fetchPypi
|
||||||
, fetchpatch
|
, fetchpatch
|
||||||
|
@ -39,6 +40,7 @@ buildPythonPackage rec {
|
||||||
];
|
];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
broken = stdenv.isDarwin;
|
||||||
description = "Auto-generate API documentation for Python projects.";
|
description = "Auto-generate API documentation for Python projects.";
|
||||||
homepage = "https://pdoc3.github.io/pdoc/";
|
homepage = "https://pdoc3.github.io/pdoc/";
|
||||||
license = with licenses; [ agpl3Plus ];
|
license = with licenses; [ agpl3Plus ];
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
{ lib
|
{ stdenv
|
||||||
|
, lib
|
||||||
, buildPythonPackage
|
, buildPythonPackage
|
||||||
, fetchPypi
|
, fetchPypi
|
||||||
, deprecated
|
, deprecated
|
||||||
|
@ -63,6 +64,7 @@ buildPythonPackage rec {
|
||||||
];
|
];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
broken = stdenv.isDarwin;
|
||||||
description = "Distances and representations of persistence diagrams";
|
description = "Distances and representations of persistence diagrams";
|
||||||
homepage = "https://persim.scikit-tda.org";
|
homepage = "https://persim.scikit-tda.org";
|
||||||
license = licenses.mit;
|
license = licenses.mit;
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
{ lib
|
{ stdenv
|
||||||
|
, lib
|
||||||
, async-timeout
|
, async-timeout
|
||||||
, buildPythonPackage
|
, buildPythonPackage
|
||||||
, fetchFromGitHub
|
, fetchFromGitHub
|
||||||
|
@ -50,6 +51,7 @@ buildPythonPackage rec {
|
||||||
];
|
];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
broken = stdenv.isDarwin;
|
||||||
description = "Python interface to Escea fireplaces";
|
description = "Python interface to Escea fireplaces";
|
||||||
homepage = "https://github.com/lazdavila/pescea";
|
homepage = "https://github.com/lazdavila/pescea";
|
||||||
license = licenses.gpl3Plus;
|
license = licenses.gpl3Plus;
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
{ lib
|
{ stdenv
|
||||||
|
, lib
|
||||||
, buildPythonPackage
|
, buildPythonPackage
|
||||||
, fetchPypi
|
, fetchPypi
|
||||||
, fetchpatch
|
, fetchpatch
|
||||||
|
@ -40,6 +41,7 @@ buildPythonPackage rec {
|
||||||
];
|
];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
broken = stdenv.isDarwin;
|
||||||
description = "Pandas support for pint";
|
description = "Pandas support for pint";
|
||||||
license = licenses.bsd3;
|
license = licenses.bsd3;
|
||||||
homepage = "https://github.com/hgrecco/pint-pandas";
|
homepage = "https://github.com/hgrecco/pint-pandas";
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
{ lib, buildPythonPackage, fetchFromGitHub, fetchpatch, keyring, mock, pytestCheckHook }:
|
{ stdenv, lib, buildPythonPackage, fetchFromGitHub, fetchpatch, keyring, mock, pytestCheckHook }:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "plyer";
|
pname = "plyer";
|
||||||
|
@ -55,6 +55,7 @@ buildPythonPackage rec {
|
||||||
pythonImportsCheck = [ "plyer" ];
|
pythonImportsCheck = [ "plyer" ];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
broken = stdenv.isDarwin;
|
||||||
description = "Plyer is a platform-independent api to use features commonly found on various platforms";
|
description = "Plyer is a platform-independent api to use features commonly found on various platforms";
|
||||||
homepage = "https://github.com/kivy/plyer";
|
homepage = "https://github.com/kivy/plyer";
|
||||||
license = licenses.mit;
|
license = licenses.mit;
|
||||||
|
|
|
@ -49,6 +49,7 @@ buildPythonPackage {
|
||||||
# ];
|
# ];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
broken = stdenv.isDarwin;
|
||||||
description = "Fast multi-threaded DataFrame library in Rust | Python | Node.js ";
|
description = "Fast multi-threaded DataFrame library in Rust | Python | Node.js ";
|
||||||
homepage = "https://github.com/pola-rs/polars";
|
homepage = "https://github.com/pola-rs/polars";
|
||||||
license = licenses.asl20;
|
license = licenses.asl20;
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
{ lib
|
{ stdenv
|
||||||
|
, lib
|
||||||
, buildPythonPackage
|
, buildPythonPackage
|
||||||
, fetchFromGitHub
|
, fetchFromGitHub
|
||||||
, fetchpatch
|
, fetchpatch
|
||||||
|
@ -42,6 +43,7 @@ buildPythonPackage rec {
|
||||||
checkInputs = [ pandas nose ]; # as of 0.13.5, it depends explicitly on nose, rather than pytest.
|
checkInputs = [ pandas nose ]; # as of 0.13.5, it depends explicitly on nose, rather than pytest.
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
broken = stdenv.isDarwin;
|
||||||
description = "Probabilistic and graphical models for Python, implemented in cython for speed";
|
description = "Probabilistic and graphical models for Python, implemented in cython for speed";
|
||||||
homepage = "https://github.com/jmschrei/pomegranate";
|
homepage = "https://github.com/jmschrei/pomegranate";
|
||||||
license = licenses.mit;
|
license = licenses.mit;
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
{ lib
|
{ stdenv
|
||||||
|
, lib
|
||||||
, buildPythonPackage
|
, buildPythonPackage
|
||||||
, fetchPypi
|
, fetchPypi
|
||||||
}:
|
}:
|
||||||
|
@ -16,6 +17,7 @@ buildPythonPackage rec {
|
||||||
doCheck = false;
|
doCheck = false;
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
broken = stdenv.isDarwin;
|
||||||
description = "Cross-platform system power status information";
|
description = "Cross-platform system power status information";
|
||||||
homepage = "https://github.com/Kentzo/Power";
|
homepage = "https://github.com/Kentzo/Power";
|
||||||
license = licenses.mit;
|
license = licenses.mit;
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
{ lib
|
{ stdenv
|
||||||
|
, lib
|
||||||
, buildPythonPackage
|
, buildPythonPackage
|
||||||
, fetchFromGitHub
|
, fetchFromGitHub
|
||||||
, openssl
|
, openssl
|
||||||
|
@ -55,6 +56,7 @@ buildPythonPackage rec {
|
||||||
];
|
];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
broken = stdenv.isDarwin;
|
||||||
description = "Python proxy framework";
|
description = "Python proxy framework";
|
||||||
homepage = "https://github.com/abhinavsingh/proxy.py";
|
homepage = "https://github.com/abhinavsingh/proxy.py";
|
||||||
license = with licenses; [ bsd3 ];
|
license = with licenses; [ bsd3 ];
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
{ lib
|
{ stdenv
|
||||||
|
, lib
|
||||||
, buildPythonPackage
|
, buildPythonPackage
|
||||||
, fetchFromGitHub
|
, fetchFromGitHub
|
||||||
, fetchpatch
|
, fetchpatch
|
||||||
|
@ -36,6 +37,7 @@ buildPythonPackage rec {
|
||||||
pythonImportsCheck = ["pulumi_aws"];
|
pythonImportsCheck = ["pulumi_aws"];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
broken = stdenv.isDarwin;
|
||||||
description = "Pulumi python amazon web services provider";
|
description = "Pulumi python amazon web services provider";
|
||||||
homepage = "https://github.com/pulumi/pulumi-aws";
|
homepage = "https://github.com/pulumi/pulumi-aws";
|
||||||
license = licenses.asl20;
|
license = licenses.asl20;
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
{ lib, buildPythonPackage, fetchPypi
|
{ stdenv, lib, buildPythonPackage, fetchPypi
|
||||||
, requests }:
|
, requests }:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
|
@ -16,6 +16,7 @@ buildPythonPackage rec {
|
||||||
doCheck = false;
|
doCheck = false;
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
broken = stdenv.isDarwin;
|
||||||
description = "Bindings and command line utility for the Pushover notification service";
|
description = "Bindings and command line utility for the Pushover notification service";
|
||||||
homepage = "https://github.com/Thibauth/python-pushover";
|
homepage = "https://github.com/Thibauth/python-pushover";
|
||||||
license = licenses.gpl3;
|
license = licenses.gpl3;
|
||||||
|
|
|
@ -38,6 +38,7 @@ buildPythonPackage rec {
|
||||||
doCheck = false;
|
doCheck = false;
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
broken = stdenv.isDarwin;
|
||||||
description = "Python binding to the library exiv2";
|
description = "Python binding to the library exiv2";
|
||||||
homepage = "https://launchpad.net/py3exiv2";
|
homepage = "https://launchpad.net/py3exiv2";
|
||||||
license = licenses.gpl3Plus;
|
license = licenses.gpl3Plus;
|
||||||
|
|
|
@ -104,6 +104,7 @@ buildPythonPackage rec {
|
||||||
] ++ lib.optionals (!stdenv.isDarwin) [ "plasma" ]);
|
] ++ lib.optionals (!stdenv.isDarwin) [ "plasma" ]);
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
broken = stdenv.isDarwin;
|
||||||
description = "A cross-language development platform for in-memory data";
|
description = "A cross-language development platform for in-memory data";
|
||||||
homepage = "https://arrow.apache.org/";
|
homepage = "https://arrow.apache.org/";
|
||||||
license = licenses.asl20;
|
license = licenses.asl20;
|
||||||
|
|
|
@ -41,6 +41,7 @@ buildPythonPackage rec {
|
||||||
'';
|
'';
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
broken = stdenv.isDarwin;
|
||||||
description = "Cross-platform clipboard utilities supporting both binary and text data";
|
description = "Cross-platform clipboard utilities supporting both binary and text data";
|
||||||
homepage = "https://github.com/spyoungtech/pyclip";
|
homepage = "https://github.com/spyoungtech/pyclip";
|
||||||
license = licenses.asl20;
|
license = licenses.asl20;
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
{ lib
|
{ stdenv
|
||||||
|
, lib
|
||||||
, buildPythonPackage
|
, buildPythonPackage
|
||||||
, fetchFromGitHub
|
, fetchFromGitHub
|
||||||
, invoke
|
, invoke
|
||||||
|
@ -39,6 +40,7 @@ buildPythonPackage rec {
|
||||||
];
|
];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
broken = stdenv.isDarwin;
|
||||||
description = "Python utility libraries for doing stuff in a functional way";
|
description = "Python utility libraries for doing stuff in a functional way";
|
||||||
homepage = "https://pydash.readthedocs.io";
|
homepage = "https://pydash.readthedocs.io";
|
||||||
license = licenses.mit;
|
license = licenses.mit;
|
||||||
|
|
|
@ -19,6 +19,7 @@ buildPythonPackage rec {
|
||||||
doCheck = false;
|
doCheck = false;
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
broken = stdenv.isDarwin;
|
||||||
description = "A library to control and monitor input devices";
|
description = "A library to control and monitor input devices";
|
||||||
homepage = "https://github.com/moses-palmer/pynput";
|
homepage = "https://github.com/moses-palmer/pynput";
|
||||||
license = licenses.lgpl3;
|
license = licenses.lgpl3;
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
{ lib
|
{ stdenv
|
||||||
|
, lib
|
||||||
, buildPythonPackage
|
, buildPythonPackage
|
||||||
, click
|
, click
|
||||||
, colorama
|
, colorama
|
||||||
|
@ -75,6 +76,7 @@ buildPythonPackage rec {
|
||||||
'';
|
'';
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
broken = stdenv.isDarwin;
|
||||||
description = "Password manager pass in Python";
|
description = "Password manager pass in Python";
|
||||||
homepage = "https://github.com/aviau/python-pass";
|
homepage = "https://github.com/aviau/python-pass";
|
||||||
license = licenses.gpl3Plus;
|
license = licenses.gpl3Plus;
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
{ lib
|
{ stdenv
|
||||||
|
, lib
|
||||||
, buildPythonPackage
|
, buildPythonPackage
|
||||||
, fetchPypi
|
, fetchPypi
|
||||||
, chameleon
|
, chameleon
|
||||||
|
@ -26,6 +27,7 @@ buildPythonPackage rec {
|
||||||
pythonImportsCheck = [ "pyramid_chameleon" ];
|
pythonImportsCheck = [ "pyramid_chameleon" ];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
broken = stdenv.isDarwin;
|
||||||
description = "Chameleon template compiler for pyramid";
|
description = "Chameleon template compiler for pyramid";
|
||||||
homepage = "https://github.com/Pylons/pyramid_chameleon";
|
homepage = "https://github.com/Pylons/pyramid_chameleon";
|
||||||
license = licenses.bsd0;
|
license = licenses.bsd0;
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
{ lib
|
{ stdenv
|
||||||
|
, lib
|
||||||
, buildPythonPackage
|
, buildPythonPackage
|
||||||
, fetchFromGitHub
|
, fetchFromGitHub
|
||||||
, pyramid
|
, pyramid
|
||||||
|
@ -24,6 +25,7 @@ buildPythonPackage rec {
|
||||||
pythonImportsCheck = [ "pyramid_hawkauth" ];
|
pythonImportsCheck = [ "pyramid_hawkauth" ];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
broken = stdenv.isDarwin;
|
||||||
homepage = "https://github.com/mozilla-services/pyramid_hawkauth";
|
homepage = "https://github.com/mozilla-services/pyramid_hawkauth";
|
||||||
description = "A Pyramid authentication plugin for HAWK";
|
description = "A Pyramid authentication plugin for HAWK";
|
||||||
license = licenses.mpl20;
|
license = licenses.mpl20;
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
{ lib
|
{ stdenv
|
||||||
|
, lib
|
||||||
, buildPythonPackage
|
, buildPythonPackage
|
||||||
, fetchPypi
|
, fetchPypi
|
||||||
, webtest
|
, webtest
|
||||||
|
@ -21,6 +22,7 @@ buildPythonPackage rec {
|
||||||
pythonImportsCheck = [ "pyramid_jinja2" ];
|
pythonImportsCheck = [ "pyramid_jinja2" ];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
broken = stdenv.isDarwin;
|
||||||
description = "Jinja2 template bindings for the Pyramid web framework";
|
description = "Jinja2 template bindings for the Pyramid web framework";
|
||||||
homepage = "https://github.com/Pylons/pyramid_jinja2";
|
homepage = "https://github.com/Pylons/pyramid_jinja2";
|
||||||
license = licenses.bsd0;
|
license = licenses.bsd0;
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
{ lib
|
{ stdenv
|
||||||
|
, lib
|
||||||
, buildPythonPackage
|
, buildPythonPackage
|
||||||
, fetchPypi
|
, fetchPypi
|
||||||
, python
|
, python
|
||||||
|
@ -20,6 +21,7 @@ buildPythonPackage rec {
|
||||||
'';
|
'';
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
broken = stdenv.isDarwin;
|
||||||
homepage = "https://github.com/giampaolo/pysendfile";
|
homepage = "https://github.com/giampaolo/pysendfile";
|
||||||
description = "A Python interface to sendfile(2)";
|
description = "A Python interface to sendfile(2)";
|
||||||
license = licenses.mit;
|
license = licenses.mit;
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
{ lib
|
{ stdenv
|
||||||
|
, lib
|
||||||
, buildPythonPackage, fetchPypi
|
, buildPythonPackage, fetchPypi
|
||||||
, numpy, scipy, cython, six, decorator
|
, numpy, scipy, cython, six, decorator
|
||||||
}:
|
}:
|
||||||
|
@ -29,6 +30,7 @@ buildPythonPackage rec {
|
||||||
doCheck = false;
|
doCheck = false;
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
broken = stdenv.isDarwin;
|
||||||
description = "A python wrapper for Speech Signal Processing Toolkit (SPTK)";
|
description = "A python wrapper for Speech Signal Processing Toolkit (SPTK)";
|
||||||
homepage = "https://pysptk.readthedocs.io/en/latest/";
|
homepage = "https://pysptk.readthedocs.io/en/latest/";
|
||||||
license = licenses.mit;
|
license = licenses.mit;
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
{ lib
|
{ stdenv
|
||||||
|
, lib
|
||||||
, buildPythonPackage
|
, buildPythonPackage
|
||||||
, fetchPypi
|
, fetchPypi
|
||||||
, pyannotate
|
, pyannotate
|
||||||
|
@ -31,6 +32,7 @@ buildPythonPackage rec {
|
||||||
];
|
];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
broken = stdenv.isDarwin;
|
||||||
description = "Generate PyAnnotate annotations from your pytest tests";
|
description = "Generate PyAnnotate annotations from your pytest tests";
|
||||||
homepage = "https://github.com/kensho-technologies/pytest-annotate";
|
homepage = "https://github.com/kensho-technologies/pytest-annotate";
|
||||||
license = licenses.asl20;
|
license = licenses.asl20;
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
{ lib
|
{ stdenv
|
||||||
|
, lib
|
||||||
, buildPythonPackage
|
, buildPythonPackage
|
||||||
, fetchFromGitHub
|
, fetchFromGitHub
|
||||||
, pytestCheckHook
|
, pytestCheckHook
|
||||||
|
@ -43,6 +44,7 @@ buildPythonPackage rec {
|
||||||
];
|
];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
broken = stdenv.isDarwin;
|
||||||
description = "Module with file-system utilities";
|
description = "Module with file-system utilities";
|
||||||
homepage = "https://github.com/fabiocaccamo/python-fsutil";
|
homepage = "https://github.com/fabiocaccamo/python-fsutil";
|
||||||
license = licenses.mit;
|
license = licenses.mit;
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
{ lib, isPy3k, buildPythonPackage, fetchFromGitHub, fetchpatch, zope_interface, twisted }:
|
{ stdenv, lib, isPy3k, buildPythonPackage, fetchFromGitHub, fetchpatch, zope_interface, twisted }:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "python3-application";
|
pname = "python3-application";
|
||||||
|
@ -27,6 +27,7 @@ buildPythonPackage rec {
|
||||||
pythonImportsCheck = [ "application" ];
|
pythonImportsCheck = [ "application" ];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
broken = stdenv.isDarwin;
|
||||||
description = "A collection of modules that are useful when building python applications";
|
description = "A collection of modules that are useful when building python applications";
|
||||||
homepage = "https://github.com/AGProjects/python3-application";
|
homepage = "https://github.com/AGProjects/python3-application";
|
||||||
license = licenses.lgpl21Plus;
|
license = licenses.lgpl21Plus;
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
{ lib
|
{ stdenv
|
||||||
|
, lib
|
||||||
, fetchPypi
|
, fetchPypi
|
||||||
, fetchNuGet
|
, fetchNuGet
|
||||||
, buildPythonPackage
|
, buildPythonPackage
|
||||||
|
@ -90,6 +91,7 @@ buildPythonPackage rec {
|
||||||
'';
|
'';
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
broken = stdenv.isDarwin;
|
||||||
description = ".Net and Mono integration for Python";
|
description = ".Net and Mono integration for Python";
|
||||||
homepage = "https://pythonnet.github.io";
|
homepage = "https://pythonnet.github.io";
|
||||||
license = licenses.mit;
|
license = licenses.mit;
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
{ lib, buildPythonPackage, fetchPypi, espeak-ng }:
|
{ stdenv, lib, buildPythonPackage, fetchPypi, espeak-ng }:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "pyttsx3";
|
pname = "pyttsx3";
|
||||||
|
@ -16,6 +16,7 @@ buildPythonPackage rec {
|
||||||
doCheck = false;
|
doCheck = false;
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
broken = stdenv.isDarwin;
|
||||||
description = "Offline text-to-speech synthesis library";
|
description = "Offline text-to-speech synthesis library";
|
||||||
homepage = "https://github.com/nateshmbhat/pyttsx3";
|
homepage = "https://github.com/nateshmbhat/pyttsx3";
|
||||||
license = licenses.mpl20;
|
license = licenses.mpl20;
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
{ lib
|
{ stdenv
|
||||||
|
, lib
|
||||||
, buildPythonPackage
|
, buildPythonPackage
|
||||||
, fetchFromGitHub
|
, fetchFromGitHub
|
||||||
, pytestCheckHook
|
, pytestCheckHook
|
||||||
|
@ -33,6 +34,7 @@ buildPythonPackage rec {
|
||||||
];
|
];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
broken = stdenv.isDarwin;
|
||||||
description = "Python client to work with Velux units";
|
description = "Python client to work with Velux units";
|
||||||
longDescription = ''
|
longDescription = ''
|
||||||
PyVLX uses the Velux KLF 200 interface to control io-Homecontrol
|
PyVLX uses the Velux KLF 200 interface to control io-Homecontrol
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
{ buildPythonPackage, lib, fetchPypi
|
{ stdenv
|
||||||
|
, buildPythonPackage, lib, fetchPypi
|
||||||
, networkx
|
, networkx
|
||||||
, numpy
|
, numpy
|
||||||
, pint
|
, pint
|
||||||
|
@ -27,6 +28,7 @@ buildPythonPackage rec {
|
||||||
doCheck = true;
|
doCheck = true;
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
broken = stdenv.isDarwin;
|
||||||
description = "Periodic table, physical constants, and molecule parsing for quantum chemistry";
|
description = "Periodic table, physical constants, and molecule parsing for quantum chemistry";
|
||||||
homepage = "http://docs.qcarchive.molssi.org/projects/qcelemental/en/latest/";
|
homepage = "http://docs.qcarchive.molssi.org/projects/qcelemental/en/latest/";
|
||||||
license = licenses.bsd3;
|
license = licenses.bsd3;
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
{ lib
|
{ stdenv
|
||||||
|
, lib
|
||||||
, pythonOlder
|
, pythonOlder
|
||||||
, buildPythonPackage
|
, buildPythonPackage
|
||||||
, fetchFromGitHub
|
, fetchFromGitHub
|
||||||
|
@ -192,6 +193,7 @@ buildPythonPackage rec {
|
||||||
|
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
broken = stdenv.isDarwin;
|
||||||
description = "Provides the foundations for Qiskit.";
|
description = "Provides the foundations for Qiskit.";
|
||||||
longDescription = ''
|
longDescription = ''
|
||||||
Allows the user to write quantum circuits easily, and takes care of the constraints of real hardware.
|
Allows the user to write quantum circuits easily, and takes care of the constraints of real hardware.
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
{ lib
|
{ stdenv
|
||||||
|
, lib
|
||||||
, buildPythonPackage
|
, buildPythonPackage
|
||||||
, fetchFromGitHub
|
, fetchFromGitHub
|
||||||
, poetry-core
|
, poetry-core
|
||||||
|
@ -43,6 +44,7 @@ buildPythonPackage rec {
|
||||||
];
|
];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
broken = stdenv.isDarwin;
|
||||||
description = "Python library to build command line user prompts";
|
description = "Python library to build command line user prompts";
|
||||||
homepage = "https://github.com/tmbo/questionary";
|
homepage = "https://github.com/tmbo/questionary";
|
||||||
license = with licenses; [ mit ];
|
license = with licenses; [ mit ];
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
{ lib
|
{ stdenv
|
||||||
|
, lib
|
||||||
, buildPythonPackage
|
, buildPythonPackage
|
||||||
, fetchFromGitHub
|
, fetchFromGitHub
|
||||||
, pytestCheckHook
|
, pytestCheckHook
|
||||||
|
@ -31,6 +32,7 @@ buildPythonPackage rec {
|
||||||
];
|
];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
broken = stdenv.isDarwin;
|
||||||
description = "Fast python port of arc90's readability tool";
|
description = "Fast python port of arc90's readability tool";
|
||||||
homepage = "https://github.com/buriy/python-readability";
|
homepage = "https://github.com/buriy/python-readability";
|
||||||
license = licenses.apsl20;
|
license = licenses.apsl20;
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
{ lib, fetchPypi, buildPythonPackage, pyparsing, robotframework, allpairspy }:
|
{ stdenv, lib, fetchPypi, buildPythonPackage, pyparsing, robotframework, allpairspy }:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "RoboMachine";
|
pname = "RoboMachine";
|
||||||
|
@ -21,6 +21,7 @@ buildPythonPackage rec {
|
||||||
'';
|
'';
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
broken = stdenv.isDarwin;
|
||||||
description = "Test data generator for Robot Framework";
|
description = "Test data generator for Robot Framework";
|
||||||
homepage = "https://github.com/mkorpela/RoboMachine";
|
homepage = "https://github.com/mkorpela/RoboMachine";
|
||||||
license = licenses.asl20;
|
license = licenses.asl20;
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
{ lib, buildPythonPackage, fetchFromGitHub, python, robotframework, selenium, mockito, robotstatuschecker, approvaltests }:
|
{ stdenv, lib, buildPythonPackage, fetchFromGitHub, python, robotframework, selenium, mockito, robotstatuschecker, approvaltests }:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
version = "6.0.0";
|
version = "6.0.0";
|
||||||
|
@ -22,6 +22,7 @@ buildPythonPackage rec {
|
||||||
'';
|
'';
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
broken = stdenv.isDarwin;
|
||||||
description = "Web testing library for Robot Framework";
|
description = "Web testing library for Robot Framework";
|
||||||
homepage = "https://github.com/robotframework/SeleniumLibrary";
|
homepage = "https://github.com/robotframework/SeleniumLibrary";
|
||||||
license = licenses.asl20;
|
license = licenses.asl20;
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
{ lib
|
{ stdenv
|
||||||
|
, lib
|
||||||
, buildPythonPackage
|
, buildPythonPackage
|
||||||
, fetchFromGitHub
|
, fetchFromGitHub
|
||||||
, capstone
|
, capstone
|
||||||
|
@ -35,6 +36,7 @@ buildPythonPackage rec {
|
||||||
];
|
];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
broken = stdenv.isDarwin;
|
||||||
description = "Show information about files in different file formats";
|
description = "Show information about files in different file formats";
|
||||||
homepage = "https://scoding.de/ropper/";
|
homepage = "https://scoding.de/ropper/";
|
||||||
license = licenses.bsd3;
|
license = licenses.bsd3;
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
{ lib
|
{ stdenv
|
||||||
|
, lib
|
||||||
, buildPythonPackage
|
, buildPythonPackage
|
||||||
, fetchPypi
|
, fetchPypi
|
||||||
, docutils
|
, docutils
|
||||||
|
@ -32,6 +33,7 @@ buildPythonPackage rec {
|
||||||
pythonImportsCheck = [ "s3fs" ];
|
pythonImportsCheck = [ "s3fs" ];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
broken = stdenv.isDarwin;
|
||||||
homepage = "https://github.com/dask/s3fs/";
|
homepage = "https://github.com/dask/s3fs/";
|
||||||
description = "A Pythonic file interface for S3";
|
description = "A Pythonic file interface for S3";
|
||||||
license = licenses.bsd3;
|
license = licenses.bsd3;
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
{ lib, buildPythonPackage, fetchPypi, dnspython, chardet, lmtpd
|
{ stdenv, lib, buildPythonPackage, fetchPypi, dnspython, chardet, lmtpd
|
||||||
, python-daemon, six, jinja2, mock, click }:
|
, python-daemon, six, jinja2, mock, click }:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
|
@ -26,6 +26,7 @@ buildPythonPackage rec {
|
||||||
'';
|
'';
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
broken = stdenv.isDarwin;
|
||||||
homepage = "https://salmon-mail.readthedocs.org/";
|
homepage = "https://salmon-mail.readthedocs.org/";
|
||||||
description = "Pythonic mail application server";
|
description = "Pythonic mail application server";
|
||||||
license = licenses.gpl3Only;
|
license = licenses.gpl3Only;
|
||||||
|
|
|
@ -128,6 +128,7 @@ buildPythonPackage rec {
|
||||||
];
|
];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
broken = stdenv.isDarwin;
|
||||||
description = "Web server and web framework";
|
description = "Web server and web framework";
|
||||||
homepage = "https://github.com/sanic-org/sanic/";
|
homepage = "https://github.com/sanic-org/sanic/";
|
||||||
license = licenses.mit;
|
license = licenses.mit;
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
{ lib
|
{ stdenv
|
||||||
|
, lib
|
||||||
, buildPythonApplication
|
, buildPythonApplication
|
||||||
, dataclasses
|
, dataclasses
|
||||||
, fetchPypi
|
, fetchPypi
|
||||||
|
@ -42,6 +43,7 @@ buildPythonApplication rec {
|
||||||
pythonImportsCheck = [ "screeninfo" ];
|
pythonImportsCheck = [ "screeninfo" ];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
broken = stdenv.isDarwin;
|
||||||
description = "Fetch location and size of physical screens";
|
description = "Fetch location and size of physical screens";
|
||||||
homepage = "https://github.com/rr-/screeninfo";
|
homepage = "https://github.com/rr-/screeninfo";
|
||||||
license = licenses.mit;
|
license = licenses.mit;
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
{ lib, buildPythonPackage, fetchPypi
|
{ stdenv, lib, buildPythonPackage, fetchPypi
|
||||||
, nose, psutil, mock }:
|
, nose, psutil, mock }:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
|
@ -22,6 +22,7 @@ buildPythonPackage rec {
|
||||||
'';
|
'';
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
broken = stdenv.isDarwin;
|
||||||
homepage = "https://www.github.com/SethMichaelLarson/selectors2";
|
homepage = "https://www.github.com/SethMichaelLarson/selectors2";
|
||||||
description = "Back-ported, durable, and portable selectors";
|
description = "Back-ported, durable, and portable selectors";
|
||||||
license = licenses.mit;
|
license = licenses.mit;
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
{ buildPythonPackage
|
{ stdenv
|
||||||
|
, buildPythonPackage
|
||||||
, fetchFromGitHub
|
, fetchFromGitHub
|
||||||
, lib
|
, lib
|
||||||
, pyopenssl
|
, pyopenssl
|
||||||
|
@ -35,6 +36,7 @@ buildPythonPackage rec {
|
||||||
pythonImportsCheck = [ "servefile" ];
|
pythonImportsCheck = [ "servefile" ];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
broken = stdenv.isDarwin;
|
||||||
description = "Serve files from shell via a small HTTP server";
|
description = "Serve files from shell via a small HTTP server";
|
||||||
homepage = "https://github.com/sebageek/servefile";
|
homepage = "https://github.com/sebageek/servefile";
|
||||||
license = licenses.gpl3Plus;
|
license = licenses.gpl3Plus;
|
||||||
|
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Add a link
Reference in a new issue