about summary refs log tree commit diff
path: root/pkgs/development/python-modules/effect/default.nix
diff options
context:
space:
mode:
authorMario Rodas <marsam@users.noreply.github.com>2018-12-02 07:15:51 -0500
committerMario Rodas <marsam@users.noreply.github.com>2018-12-02 11:41:20 -0500
commitffb5ebe9e0055a9d4478a7d7c72af4e0b0cd0ad1 (patch)
treeaa14ae8db4dec567f65b73a6d8169bb2f89b93c6 /pkgs/development/python-modules/effect/default.nix
parent9e8f6176e52a4a3e9991bf77288b6732b8e8226f (diff)
downloadnixlib-ffb5ebe9e0055a9d4478a7d7c72af4e0b0cd0ad1.tar
nixlib-ffb5ebe9e0055a9d4478a7d7c72af4e0b0cd0ad1.tar.gz
nixlib-ffb5ebe9e0055a9d4478a7d7c72af4e0b0cd0ad1.tar.bz2
nixlib-ffb5ebe9e0055a9d4478a7d7c72af4e0b0cd0ad1.tar.lz
nixlib-ffb5ebe9e0055a9d4478a7d7c72af4e0b0cd0ad1.tar.xz
nixlib-ffb5ebe9e0055a9d4478a7d7c72af4e0b0cd0ad1.tar.zst
nixlib-ffb5ebe9e0055a9d4478a7d7c72af4e0b0cd0ad1.zip
pythonPackages.effect: 0.11.0 -> 0.12.0
Diffstat (limited to 'pkgs/development/python-modules/effect/default.nix')
-rw-r--r--pkgs/development/python-modules/effect/default.nix8
1 files changed, 3 insertions, 5 deletions
diff --git a/pkgs/development/python-modules/effect/default.nix b/pkgs/development/python-modules/effect/default.nix
index 3a026103a15c..8e4ad446746a 100644
--- a/pkgs/development/python-modules/effect/default.nix
+++ b/pkgs/development/python-modules/effect/default.nix
@@ -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;