about summary refs log tree commit diff
path: root/pkgs/development/python-modules/dulwich
diff options
context:
space:
mode:
authorRobert Schütz <nix@dotlambda.de>2021-12-31 08:10:25 +0000
committerMartin Weinelt <hexa@darmstadt.ccc.de>2022-01-01 02:10:53 +0100
commit2cae050057e56b5e33ddfc28449013061eb3b604 (patch)
treed9335d65559283f17ccecc69a55408c52dc69779 /pkgs/development/python-modules/dulwich
parent4beaf5301df522276e169ab74614134ec9f5ecd3 (diff)
python2Packages: remove superfluous overrides
Since Python 2 is not supported anymore we only keep those overrides
which are used by leaf packages.
Diffstat (limited to 'pkgs/development/python-modules/dulwich')
-rw-r--r--pkgs/development/python-modules/dulwich/0_19.nix30
1 files changed, 0 insertions, 30 deletions
diff --git a/pkgs/development/python-modules/dulwich/0_19.nix b/pkgs/development/python-modules/dulwich/0_19.nix
deleted file mode 100644
index 9a09c7cc75ddf..0000000000000
--- a/pkgs/development/python-modules/dulwich/0_19.nix
+++ /dev/null
@@ -1,30 +0,0 @@
-{ lib, 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 lib; {
-    description = "Simple Python implementation of the Git file formats and protocols";
-    homepage = "https://www.dulwich.io/";
-    license = licenses.gpl2Plus;
-    maintainers = with maintainers; [ koral ];
-  };
-}