about summary refs log tree commit diff
path: root/pkgs/development/python-modules/dulwich
diff options
context:
space:
mode:
authorFrederik Rietdijk <fridh@fridh.nl>2020-06-11 12:05:21 +0200
committerFrederik Rietdijk <fridh@fridh.nl>2020-06-11 12:05:21 +0200
commit28a1fffbecc913c05d8fe6d57192bd6371159e98 (patch)
treeea857ad941bcb224306183d277b498bc382a89a7 /pkgs/development/python-modules/dulwich
parente8a60ee4120b0643cf4f4f941bf47227402354d2 (diff)
python2.pkgs.dulwich: keep 0.19.16 for python 2
Diffstat (limited to 'pkgs/development/python-modules/dulwich')
-rw-r--r--pkgs/development/python-modules/dulwich/0_19.nix30
1 files changed, 30 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/dulwich/0_19.nix b/pkgs/development/python-modules/dulwich/0_19.nix
new file mode 100644
index 0000000000000..82b9bed492cca
--- /dev/null
+++ b/pkgs/development/python-modules/dulwich/0_19.nix
@@ -0,0 +1,30 @@
+{ stdenv, buildPythonPackage, fetchPypi
+, urllib3, certifi
+, gevent, geventhttpclient, mock, fastimport
+, git, glibcLocales }:
+
+buildPythonPackage rec {
+  version = "0.19.16";
+  pname = "dulwich";
+
+  src = fetchPypi {
+    inherit pname version;
+    sha256 = "f74561c448bfb6f04c07de731c1181ae4280017f759b0bb04fa5770aa84ca850";
+  };
+
+  LC_ALL = "en_US.UTF-8";
+
+  propagatedBuildInputs = [ urllib3 certifi ];
+
+  # Only test dependencies
+  checkInputs = [ git glibcLocales gevent geventhttpclient mock fastimport ];
+
+  doCheck = !stdenv.isDarwin;
+
+  meta = with stdenv.lib; {
+    description = "Simple Python implementation of the Git file formats and protocols";
+    homepage = "https://samba.org/~jelmer/dulwich/";
+    license = licenses.gpl2Plus;
+    maintainers = with maintainers; [ koral ];
+  };
+}