nixpkgs/pkgs/development/python-modules/effect/default.nix

41 lines
608 B
Nix
Raw Normal View History

2018-04-20 09:25:58 +00:00
{ buildPythonPackage
, fetchPypi
, lib
, isPy3k
2018-04-20 09:25:58 +00:00
, six
2018-04-20 09:32:29 +00:00
, attrs
, pytest
, testtools
2018-04-20 09:25:58 +00:00
}:
2018-04-20 09:32:29 +00:00
buildPythonPackage rec {
2019-12-19 19:31:10 +00:00
version = "1.1.0";
2018-04-20 09:32:29 +00:00
pname = "effect";
disabled = (!isPy3k);
2018-04-20 09:25:58 +00:00
src = fetchPypi {
inherit pname version;
2019-12-19 19:31:10 +00:00
sha256 = "7affb603707c648b07b11781ebb793a4b9aee8acf1ac5764c3ed2112adf0c9ea";
2018-04-20 09:25:58 +00:00
};
2018-04-20 09:32:29 +00:00
checkInputs = [
pytest
testtools
];
2018-04-20 09:25:58 +00:00
propagatedBuildInputs = [
six
attrs
];
2018-04-20 09:32:29 +00:00
checkPhase = ''
pytest
2018-04-20 09:32:29 +00:00
'';
2018-04-20 09:25:58 +00:00
meta = with lib; {
2018-04-20 09:32:29 +00:00
description = "Pure effects for Python";
homepage = "https://github.com/python-effect/effect";
2018-04-20 09:25:58 +00:00
license = licenses.mit;
};
}