about summary refs log tree commit diff
path: root/pkgs/development/python-modules/wrapt
diff options
context:
space:
mode:
authorFrederik Rietdijk <fridh@fridh.nl>2018-02-27 16:35:57 +0100
committerFrederik Rietdijk <fridh@fridh.nl>2018-02-27 16:35:57 +0100
commit15beb89da6e14c4c78ab439f8cab18e109bcd356 (patch)
treeb2adb4895fd0f2fac2433cc984cc102cb5ce994b /pkgs/development/python-modules/wrapt
parentd10c2012523a365e3cfe4547fac01aed3facc317 (diff)
python: wrapt: 1.10.5 -> 1.10.11
Diffstat (limited to 'pkgs/development/python-modules/wrapt')
-rw-r--r--pkgs/development/python-modules/wrapt/default.nix23
1 files changed, 23 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/wrapt/default.nix b/pkgs/development/python-modules/wrapt/default.nix
new file mode 100644
index 0000000000000..badecc776d759
--- /dev/null
+++ b/pkgs/development/python-modules/wrapt/default.nix
@@ -0,0 +1,23 @@
+{ lib
+, buildPythonPackage
+, fetchPypi
+}:
+
+buildPythonPackage rec {
+  pname = "wrapt";
+  version = "1.10.11";
+
+  # No tests in archive
+  doCheck = false;
+
+  src = fetchPypi {
+    inherit pname version;
+    sha256 = "d4d560d479f2c21e1b5443bbd15fe7ec4b37fe7e53d335d3b9b0a7b1226fe3c6";
+  };
+
+  meta = {
+    description = "Module for decorators, wrappers and monkey patching";
+    license = lib.licenses.bsd2;
+    homepage = https://github.com/GrahamDumpleton/wrapt;
+  };
+}
\ No newline at end of file