pythonPackages.effect: 0.11.0 -> 0.12.0

This commit is contained in:
Mario Rodas 2018-12-02 07:15:51 -05:00
parent 9e8f6176e5
commit ffb5ebe9e0
No known key found for this signature in database
GPG key ID: 325649BCA6D53027

View file

@ -8,12 +8,12 @@
, testtools
}:
buildPythonPackage rec {
version = "0.11.0";
version = "0.12.0";
pname = "effect";
src = fetchPypi {
inherit pname version;
sha256 = "1q75w4magkqd8ggabhhzzxmxakpdnn0vdg7ygj89zdc9yl7561q6";
sha256 = "0s8zsncq4l0ar2b4dijf8yzrk13x2swr1w2nb30s1p5jd6r24czl";
};
checkInputs = [
pytest
@ -24,10 +24,8 @@ buildPythonPackage rec {
attrs
];
checkPhase = ''
pytest .
pytest
'';
# Tests fails on python3.7 https://github.com/python-effect/effect/issues/78
doCheck = !isPy37;
meta = with lib; {
description = "Pure effects for Python";
homepage = https://github.com/python-effect/effect;