Merge pull request #51381 from marsam/feature/update-python-effect

pythonPackages.effect: 0.11.0 -> 0.12.0
This commit is contained in:
Jörg Thalheim 2018-12-02 19:06:16 +00:00 committed by GitHub
commit 5ae9250c3b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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;