3
0
Fork 0
forked from mirrors/nixpkgs

pythonPackages.effect: init -> 0.11.0

This commit is contained in:
Sebastian Jordan 2018-04-20 11:25:58 +02:00
parent 6db7f92cc2
commit 101d1d118d
2 changed files with 30 additions and 0 deletions

View file

@ -0,0 +1,29 @@
{ buildPythonPackage
, fetchPypi
, lib
, attrs
, six
}:
let
version = "0.11.0";
pname = "effect";
in
buildPythonPackage {
inherit version pname;
src = fetchPypi {
inherit pname version;
sha256 = "1q75w4magkqd8ggabhhzzxmxakpdnn0vdg7ygj89zdc9yl7561q6";
};
propagatedBuildInputs = [
six
attrs
];
doCheck = false;
meta = with lib; {
description = "pure effects for Python";
homepage = https://github.com/python-effect/effect;
license = licenses.mit;
};
}

View file

@ -5180,6 +5180,7 @@ in {
};
};
effect = callPackage ../development/python-modules/effect {};
elpy = buildPythonPackage rec {
name = "elpy-${version}";