about summary refs log tree commit diff
path: root/pkgs/development/python-modules/hglib/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/python-modules/hglib/default.nix')
-rw-r--r--pkgs/development/python-modules/hglib/default.nix26
1 files changed, 26 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/hglib/default.nix b/pkgs/development/python-modules/hglib/default.nix
new file mode 100644
index 000000000000..4e96f9389918
--- /dev/null
+++ b/pkgs/development/python-modules/hglib/default.nix
@@ -0,0 +1,26 @@
+{ stdenv, buildPythonPackage, fetchPypi, nose, mercurial, isPy3k }:
+
+buildPythonPackage rec {
+  pname = "python-hglib";
+  version = "2.4";
+  name = "${pname}-${version}";
+
+  src = fetchPypi {
+    inherit pname version;
+    sha256 = "0qll9cc9ndqizby00gxdcf6d0cysdhjkr8670a4ffrk55bcnwgb9";
+  };
+
+  checkInputs = [ nose ];
+  buildInputs = [ mercurial ];
+
+  checkPhase = ''python test.py'';
+  doCheck = if isPy3k then false else true;
+
+  meta = with stdenv.lib; {
+    description = "Mercurial Python library";
+    homepage = "http://selenic.com/repo/python-hglib";
+    license = licenses.mit;
+    maintainers = with maintainers; [ dfoxfranke ];
+    platforms = platforms.all;
+  };
+}