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