pythonPackages.promise: init at 2.3
This commit is contained in:
parent
c6f75c74df
commit
638251852e
49
pkgs/development/python-modules/promise/default.nix
Normal file
49
pkgs/development/python-modules/promise/default.nix
Normal file
@ -0,0 +1,49 @@
|
|||||||
|
{ buildPythonPackage
|
||||||
|
, fetchPypi
|
||||||
|
, lib
|
||||||
|
|
||||||
|
, coveralls
|
||||||
|
, gevent
|
||||||
|
, mock
|
||||||
|
, pytest-asyncio
|
||||||
|
, pytest-benchmark
|
||||||
|
, pytestcov
|
||||||
|
, six
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "promise";
|
||||||
|
version = "2.3";
|
||||||
|
|
||||||
|
src = fetchPypi {
|
||||||
|
inherit pname version;
|
||||||
|
sha256 = "1l4kknj97dj5pxfpsz3ln78x9a843561c740b1m4pfi3qlvq7lfz";
|
||||||
|
};
|
||||||
|
|
||||||
|
patchPhase = ''
|
||||||
|
substituteInPlace setup.py \
|
||||||
|
--replace '"futures",' ""
|
||||||
|
'';
|
||||||
|
|
||||||
|
propagatedBuildInputs = [
|
||||||
|
gevent
|
||||||
|
six
|
||||||
|
];
|
||||||
|
|
||||||
|
checkInputs = [
|
||||||
|
coveralls
|
||||||
|
mock
|
||||||
|
pytest-asyncio
|
||||||
|
pytest-benchmark
|
||||||
|
pytestcov
|
||||||
|
];
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "Ultra-performant Promise implementation in Python";
|
||||||
|
homepage = "https://github.com/syrusakbary/promise";
|
||||||
|
license = licenses.mit;
|
||||||
|
maintainers = with maintainers; [
|
||||||
|
kamadorueda
|
||||||
|
];
|
||||||
|
};
|
||||||
|
}
|
@ -4793,6 +4793,8 @@ in {
|
|||||||
|
|
||||||
precis-i18n = callPackage ../development/python-modules/precis-i18n { };
|
precis-i18n = callPackage ../development/python-modules/precis-i18n { };
|
||||||
|
|
||||||
|
promise = callPackage ../development/python-modules/promise { };
|
||||||
|
|
||||||
prox-tv = callPackage ../development/python-modules/prox-tv {
|
prox-tv = callPackage ../development/python-modules/prox-tv {
|
||||||
# We need to use blas instead of openblas on darwin,
|
# We need to use blas instead of openblas on darwin,
|
||||||
# see https://github.com/NixOS/nixpkgs/pull/45013.
|
# see https://github.com/NixOS/nixpkgs/pull/45013.
|
||||||
|
Loading…
x
Reference in New Issue
Block a user