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

pythonPackages.effect: 0.11.0 -> 0.12.0

authored by Jörg Thalheim and committed by GitHub 5ae9250c 0e6e8c13

+3 -5
+3 -5
pkgs/development/python-modules/effect/default.nix
··· 8 , testtools 9 }: 10 buildPythonPackage rec { 11 - version = "0.11.0"; 12 pname = "effect"; 13 14 src = fetchPypi { 15 inherit pname version; 16 - sha256 = "1q75w4magkqd8ggabhhzzxmxakpdnn0vdg7ygj89zdc9yl7561q6"; 17 }; 18 checkInputs = [ 19 pytest ··· 24 attrs 25 ]; 26 checkPhase = '' 27 - pytest . 28 ''; 29 - # Tests fails on python3.7 https://github.com/python-effect/effect/issues/78 30 - doCheck = !isPy37; 31 meta = with lib; { 32 description = "Pure effects for Python"; 33 homepage = https://github.com/python-effect/effect;
··· 8 , testtools 9 }: 10 buildPythonPackage rec { 11 + version = "0.12.0"; 12 pname = "effect"; 13 14 src = fetchPypi { 15 inherit pname version; 16 + sha256 = "0s8zsncq4l0ar2b4dijf8yzrk13x2swr1w2nb30s1p5jd6r24czl"; 17 }; 18 checkInputs = [ 19 pytest ··· 24 attrs 25 ]; 26 checkPhase = '' 27 + pytest 28 ''; 29 meta = with lib; { 30 description = "Pure effects for Python"; 31 homepage = https://github.com/python-effect/effect;