about summary refs log tree commit diff
path: root/pkgs/development/python-modules/convertdate
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/convertdate
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/convertdate')
-rw-r--r--pkgs/development/python-modules/convertdate/2.2.x.nix36
1 files changed, 0 insertions, 36 deletions
diff --git a/pkgs/development/python-modules/convertdate/2.2.x.nix b/pkgs/development/python-modules/convertdate/2.2.x.nix
deleted file mode 100644
index 1145a61ca4f09..0000000000000
--- a/pkgs/development/python-modules/convertdate/2.2.x.nix
+++ /dev/null
@@ -1,36 +0,0 @@
-{ lib
-, buildPythonPackage
-, fetchFromGitHub
-, pymeeus
-, pytz
-, pytestCheckHook
-}:
-
-buildPythonPackage rec {
-  pname = "convertdate";
-  version = "2.2.2";
-
-  # Tests are not available in the PyPI tarball so use GitHub instead.
-  src = fetchFromGitHub {
-    owner = "fitnr";
-    repo = pname;
-    rev = "v${version}";
-    sha256 = "07x1j6jgkmrzdpv2lhpp4n16621mpmlylvwdwsggdjivhzvc3x9q";
-  };
-
-  propagatedBuildInputs = [
-    pymeeus
-    pytz
-  ];
-
-  checkInputs = [
-    pytestCheckHook
-  ];
-
-  meta = with lib; {
-    homepage = "https://github.com/fitnr/convertdate";
-    description = "Utils for converting between date formats and calculating holidays";
-    license = licenses.mit;
-    maintainers = with maintainers; [ jluttine ];
-  };
-}