about summary refs log tree commit diff
path: root/pkgs/development/python-modules/zope_contenttype
diff options
context:
space:
mode:
authorChris Ostrouchov <chris.ostrouchov@gmail.com>2018-10-29 10:07:58 -0400
committerChris Ostrouchov <chris.ostrouchov@gmail.com>2018-10-30 00:51:02 -0400
commitf50579106a03550a241f98087b3a34659b8f7eb5 (patch)
tree48b4aec7c76fba01826e874df333a7c93be65453 /pkgs/development/python-modules/zope_contenttype
parent9060471dcdeabbc310f59db3156304d774deccc2 (diff)
downloadnixlib-f50579106a03550a241f98087b3a34659b8f7eb5.tar
nixlib-f50579106a03550a241f98087b3a34659b8f7eb5.tar.gz
nixlib-f50579106a03550a241f98087b3a34659b8f7eb5.tar.bz2
nixlib-f50579106a03550a241f98087b3a34659b8f7eb5.tar.lz
nixlib-f50579106a03550a241f98087b3a34659b8f7eb5.tar.xz
nixlib-f50579106a03550a241f98087b3a34659b8f7eb5.tar.zst
nixlib-f50579106a03550a241f98087b3a34659b8f7eb5.zip
pythonPackages.zope_contenttype: refactor move to python-modules
Diffstat (limited to 'pkgs/development/python-modules/zope_contenttype')
-rw-r--r--pkgs/development/python-modules/zope_contenttype/default.nix22
1 files changed, 22 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/zope_contenttype/default.nix b/pkgs/development/python-modules/zope_contenttype/default.nix
new file mode 100644
index 000000000000..67c5a9866880
--- /dev/null
+++ b/pkgs/development/python-modules/zope_contenttype/default.nix
@@ -0,0 +1,22 @@
+{ stdenv
+, buildPythonPackage
+, fetchPypi
+}:
+
+buildPythonPackage rec {
+  pname = "zope.contenttype";
+  version = "4.0.1";
+
+  src = fetchPypi {
+    inherit pname version;
+    sha256 = "9decc7531ad6925057f1a667ac0ef9d658577a92b0b48dafa7daa97b78a02bbb";
+  };
+
+  meta = with stdenv.lib; {
+    homepage = http://github.com/zopefoundation/zope.contenttype;
+    description = "A utility module for content-type (MIME type) handling";
+    license = licenses.zpl20;
+    maintainers = with maintainers; [ goibhniu ];
+  };
+
+}