about summary refs log tree commit diff
path: root/pkgs/development/python-modules/funcy
diff options
context:
space:
mode:
authorChris Ostrouchov <chris.ostrouchov@gmail.com>2018-10-29 12:34:56 -0400
committerChris Ostrouchov <chris.ostrouchov@gmail.com>2018-10-30 00:51:11 -0400
commit00eb722bf74ec675c080602d61d7191a2cc5040f (patch)
tree5b85b95bdf110b6654817ac6dbb0646d42fbdab1 /pkgs/development/python-modules/funcy
parenta576b19efb4da479aad6dab73316c45423882f91 (diff)
pythonPackages.funcy: refactor move to python-modules
Diffstat (limited to 'pkgs/development/python-modules/funcy')
-rw-r--r--pkgs/development/python-modules/funcy/default.nix24
1 files changed, 24 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/funcy/default.nix b/pkgs/development/python-modules/funcy/default.nix
new file mode 100644
index 0000000000000..ab7500466e04b
--- /dev/null
+++ b/pkgs/development/python-modules/funcy/default.nix
@@ -0,0 +1,24 @@
+{ stdenv
+, buildPythonPackage
+, fetchPypi
+}:
+
+buildPythonPackage rec {
+  pname = "funcy";
+  version = "1.6";
+
+  src = fetchPypi {
+    inherit pname version;
+    sha256 = "511495db0c5660af18d3151b008c6ce698ae7fbf60887278e79675e35eed1f01";
+  };
+
+  # No tests
+  doCheck = false;
+
+  meta = with stdenv.lib; {
+    description = "Collection of fancy functional tools focused on practicality";
+    homepage = "http://funcy.readthedocs.org/";
+    license = licenses.bsd3;
+  };
+
+}