Merge pull request #51381 from marsam/feature/update-python-effect
pythonPackages.effect: 0.11.0 -> 0.12.0
This commit is contained in:
commit
5ae9250c3b
|
@ -8,12 +8,12 @@
|
||||||
, testtools
|
, testtools
|
||||||
}:
|
}:
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
version = "0.11.0";
|
version = "0.12.0";
|
||||||
pname = "effect";
|
pname = "effect";
|
||||||
|
|
||||||
src = fetchPypi {
|
src = fetchPypi {
|
||||||
inherit pname version;
|
inherit pname version;
|
||||||
sha256 = "1q75w4magkqd8ggabhhzzxmxakpdnn0vdg7ygj89zdc9yl7561q6";
|
sha256 = "0s8zsncq4l0ar2b4dijf8yzrk13x2swr1w2nb30s1p5jd6r24czl";
|
||||||
};
|
};
|
||||||
checkInputs = [
|
checkInputs = [
|
||||||
pytest
|
pytest
|
||||||
|
@ -24,10 +24,8 @@ buildPythonPackage rec {
|
||||||
attrs
|
attrs
|
||||||
];
|
];
|
||||||
checkPhase = ''
|
checkPhase = ''
|
||||||
pytest .
|
pytest
|
||||||
'';
|
'';
|
||||||
# Tests fails on python3.7 https://github.com/python-effect/effect/issues/78
|
|
||||||
doCheck = !isPy37;
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "Pure effects for Python";
|
description = "Pure effects for Python";
|
||||||
homepage = https://github.com/python-effect/effect;
|
homepage = https://github.com/python-effect/effect;
|
||||||
|
|
Loading…
Reference in New Issue