about summary refs log tree commit diff
path: root/pkgs/development/python-modules
diff options
context:
space:
mode:
authorSebastian Jordan <sebastian.jordan.mail@googlemail.com>2018-04-20 11:25:58 +0200
committerSebastian Jordan <sebastian.jordan.mail@googlemail.com>2018-05-15 14:35:10 +0200
commit101d1d118d28b368a2de4246bfce4bf3151c51f0 (patch)
treeaaf908f3693c3af8c2a816435ce954b503e98454 /pkgs/development/python-modules
parent6db7f92cc2af827e8b8b181bf5ed828a1d0f141d (diff)
downloadnixlib-101d1d118d28b368a2de4246bfce4bf3151c51f0.tar
nixlib-101d1d118d28b368a2de4246bfce4bf3151c51f0.tar.gz
nixlib-101d1d118d28b368a2de4246bfce4bf3151c51f0.tar.bz2
nixlib-101d1d118d28b368a2de4246bfce4bf3151c51f0.tar.lz
nixlib-101d1d118d28b368a2de4246bfce4bf3151c51f0.tar.xz
nixlib-101d1d118d28b368a2de4246bfce4bf3151c51f0.tar.zst
nixlib-101d1d118d28b368a2de4246bfce4bf3151c51f0.zip
pythonPackages.effect: init -> 0.11.0
Diffstat (limited to 'pkgs/development/python-modules')
-rw-r--r--pkgs/development/python-modules/effect/default.nix29
1 files changed, 29 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/effect/default.nix b/pkgs/development/python-modules/effect/default.nix
new file mode 100644
index 000000000000..d5fdf2d3f85d
--- /dev/null
+++ b/pkgs/development/python-modules/effect/default.nix
@@ -0,0 +1,29 @@
+{ buildPythonPackage
+, fetchPypi
+, lib
+, attrs
+, six
+}:
+let
+
+version = "0.11.0";
+pname = "effect";
+
+in
+buildPythonPackage {
+  inherit version pname;                      
+  src = fetchPypi {
+    inherit pname version;
+    sha256 = "1q75w4magkqd8ggabhhzzxmxakpdnn0vdg7ygj89zdc9yl7561q6";
+  };
+  propagatedBuildInputs = [
+    six
+    attrs
+  ];
+  doCheck = false;
+  meta = with lib; {
+    description = "pure effects for Python";
+    homepage = https://github.com/python-effect/effect;
+    license = licenses.mit;
+  };
+}