about summary refs log tree commit diff
path: root/pkgs/development/python-modules/zope_dottedname
diff options
context:
space:
mode:
authorChris Ostrouchov <chris.ostrouchov@gmail.com>2018-10-29 10:17:47 -0400
committerChris Ostrouchov <chris.ostrouchov@gmail.com>2018-10-30 00:51:02 -0400
commit69e943ba3ef0dc9f4ea2bc704e8a7a2415f468f9 (patch)
treecbe0a53f5c6422029d2d55a989971293d1e6a13f /pkgs/development/python-modules/zope_dottedname
parentf50579106a03550a241f98087b3a34659b8f7eb5 (diff)
pythonPackages.zope_dottedname: refactor move to python-modules
Diffstat (limited to 'pkgs/development/python-modules/zope_dottedname')
-rw-r--r--pkgs/development/python-modules/zope_dottedname/default.nix22
1 files changed, 22 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/zope_dottedname/default.nix b/pkgs/development/python-modules/zope_dottedname/default.nix
new file mode 100644
index 0000000000000..8d5ef91b983ff
--- /dev/null
+++ b/pkgs/development/python-modules/zope_dottedname/default.nix
@@ -0,0 +1,22 @@
+{ stdenv
+, buildPythonPackage
+, fetchPypi
+}:
+
+buildPythonPackage rec {
+  pname = "zope.dottedname";
+  version = "3.4.6";
+
+  src = fetchPypi {
+    inherit pname version;
+    sha256 = "331d801d98e539fa6c5d50c3835ecc144c429667f483281505de53fc771e6bf5";
+  };
+
+  meta = with stdenv.lib; {
+    homepage = http://pypi.python.org/pypi/zope.dottedname;
+    description = "Resolver for Python dotted names";
+    license = licenses.zpl20;
+    maintainers = with maintainers; [ goibhniu ];
+  };
+
+}