summary refs log tree commit diff
path: root/pkgs/development/python-modules/zope_deprecation
diff options
context:
space:
mode:
authorChris Ostrouchov <chris.ostrouchov@gmail.com>2018-10-16 13:16:04 -0400
committerFrederik Rietdijk <fridh@fridh.nl>2018-10-17 07:46:58 +0200
commit5c440b5aae8504fcd06d5b71a80fde9c2ebb8742 (patch)
treef8a51302e9310d8980cc01b447a3877eda0f8371 /pkgs/development/python-modules/zope_deprecation
parentb37a318d4171fbf9a88b8a3d62f528cc28ab2ad7 (diff)
downloadnixlib-5c440b5aae8504fcd06d5b71a80fde9c2ebb8742.tar
nixlib-5c440b5aae8504fcd06d5b71a80fde9c2ebb8742.tar.gz
nixlib-5c440b5aae8504fcd06d5b71a80fde9c2ebb8742.tar.bz2
nixlib-5c440b5aae8504fcd06d5b71a80fde9c2ebb8742.tar.lz
nixlib-5c440b5aae8504fcd06d5b71a80fde9c2ebb8742.tar.xz
nixlib-5c440b5aae8504fcd06d5b71a80fde9c2ebb8742.tar.zst
nixlib-5c440b5aae8504fcd06d5b71a80fde9c2ebb8742.zip
pythonPackages.zope_deprecation: refactor move to python-modules
Diffstat (limited to 'pkgs/development/python-modules/zope_deprecation')
-rw-r--r--pkgs/development/python-modules/zope_deprecation/default.nix25
1 files changed, 25 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/zope_deprecation/default.nix b/pkgs/development/python-modules/zope_deprecation/default.nix
new file mode 100644
index 000000000000..ddc486918fb2
--- /dev/null
+++ b/pkgs/development/python-modules/zope_deprecation/default.nix
@@ -0,0 +1,25 @@
+{ stdenv
+, buildPythonPackage
+, fetchPypi
+, zope_testing
+}:
+
+buildPythonPackage rec {
+  pname = "zope.deprecation";
+  version = "4.1.2";
+
+  src = fetchPypi {
+    inherit pname version;
+    sha256 = "fed622b51ffc600c13cc5a5b6916b8514c115f34f7ea2730409f30c061eb0b78";
+  };
+
+  buildInputs = [ zope_testing ];
+
+  meta = with stdenv.lib; {
+    homepage = http://github.com/zopefoundation/zope.deprecation;
+    description = "Zope Deprecation Infrastructure";
+    license = licenses.zpl20;
+    maintainers = with maintainers; [ garbas domenkozar ];
+  };
+
+}