python3Packages.pyee: init at 7.0.4
This commit is contained in:
parent
1491bab2b1
commit
3a30b1fc16
37
pkgs/development/python-modules/pyee/default.nix
Normal file
37
pkgs/development/python-modules/pyee/default.nix
Normal file
@ -0,0 +1,37 @@
|
|||||||
|
{ buildPythonPackage, fetchPypi, lib, vcversioner, pytestrunner, mock, pytest, pytest-asyncio, pytest-trio, twisted, zipp, pyparsing, pyhamcrest, futures, attrs, stdenv, isPy27 }:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "pyee";
|
||||||
|
version = "7.0.4";
|
||||||
|
|
||||||
|
src = fetchPypi {
|
||||||
|
inherit pname version;
|
||||||
|
sha256 = "105n8jzw8vy6cm8mm5sm86mwyaqqr8zjh8w9xvcb7hp29p0vrihm";
|
||||||
|
};
|
||||||
|
|
||||||
|
buildInputs = [
|
||||||
|
vcversioner
|
||||||
|
];
|
||||||
|
|
||||||
|
checkInputs = [
|
||||||
|
mock
|
||||||
|
pyhamcrest
|
||||||
|
pytest
|
||||||
|
pytest-asyncio
|
||||||
|
pytest-trio
|
||||||
|
pytestrunner
|
||||||
|
twisted
|
||||||
|
] ++ stdenv.lib.optional isPy27 [
|
||||||
|
attrs
|
||||||
|
futures
|
||||||
|
pyparsing
|
||||||
|
zipp
|
||||||
|
];
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
description = "A port of Node.js's EventEmitter to python";
|
||||||
|
homepage = "https://github.com/jfhbrook/pyee";
|
||||||
|
license = lib.licenses.mit;
|
||||||
|
maintainers = with lib.maintainers; [ kmein ];
|
||||||
|
};
|
||||||
|
}
|
@ -4984,6 +4984,8 @@ in {
|
|||||||
|
|
||||||
pyechonest = callPackage ../development/python-modules/pyechonest { };
|
pyechonest = callPackage ../development/python-modules/pyechonest { };
|
||||||
|
|
||||||
|
pyee = callPackage ../development/python-modules/pyee { };
|
||||||
|
|
||||||
pyelftools = callPackage ../development/python-modules/pyelftools { };
|
pyelftools = callPackage ../development/python-modules/pyelftools { };
|
||||||
|
|
||||||
pyemd = callPackage ../development/python-modules/pyemd { };
|
pyemd = callPackage ../development/python-modules/pyemd { };
|
||||||
|
Loading…
Reference in New Issue
Block a user