forked from mirrors/nixpkgs
pythonPackages.effect: init -> 0.11.0
This commit is contained in:
parent
6db7f92cc2
commit
101d1d118d
29
pkgs/development/python-modules/effect/default.nix
Normal file
29
pkgs/development/python-modules/effect/default.nix
Normal 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;
|
||||
};
|
||||
}
|
|
@ -5180,6 +5180,7 @@ in {
|
|||
};
|
||||
};
|
||||
|
||||
effect = callPackage ../development/python-modules/effect {};
|
||||
|
||||
elpy = buildPythonPackage rec {
|
||||
name = "elpy-${version}";
|
||||
|
|
Loading…
Reference in a new issue