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

37 lines
668 B
Nix
Raw Normal View History

2018-04-20 09:25:58 +00:00
{ buildPythonPackage
, fetchPypi
, isPy37
2018-04-20 09:25:58 +00:00
, lib
, 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 {
version = "0.11.0";
pname = "effect";
2018-04-20 09:25:58 +00:00
src = fetchPypi {
inherit pname version;
sha256 = "1q75w4magkqd8ggabhhzzxmxakpdnn0vdg7ygj89zdc9yl7561q6";
};
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 .
'';
# Tests fails on python3.7 https://github.com/python-effect/effect/issues/78
doCheck = !isPy37;
2018-04-20 09:25:58 +00:00
meta = with lib; {
2018-04-20 09:32:29 +00:00
description = "Pure effects for Python";
2018-04-20 09:25:58 +00:00
homepage = https://github.com/python-effect/effect;
license = licenses.mit;
};
}