about summary refs log tree commit diff
path: root/pkgs/development/python-modules/packaging
diff options
context:
space:
mode:
authorgithub-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>2022-01-16 12:01:11 +0000
committerGitHub <noreply@github.com>2022-01-16 12:01:11 +0000
commit0173b359a6c9876f987fc77242180255130e75c5 (patch)
tree0f37da3472d10b9ffbd8bd21070f013b4a85b1e4 /pkgs/development/python-modules/packaging
parent122cae786e3c1c60457d59ba1fdce92bf0f81855 (diff)
parent3a13cdf0c125d983b8ee429d99e5f06108d879ba (diff)
Merge master into staging-next
Diffstat (limited to 'pkgs/development/python-modules/packaging')
-rw-r--r--pkgs/development/python-modules/packaging/2.nix39
1 files changed, 0 insertions, 39 deletions
diff --git a/pkgs/development/python-modules/packaging/2.nix b/pkgs/development/python-modules/packaging/2.nix
deleted file mode 100644
index 0f9e61859a160..0000000000000
--- a/pkgs/development/python-modules/packaging/2.nix
+++ /dev/null
@@ -1,39 +0,0 @@
-{ lib
-, buildPythonPackage
-, fetchPypi
-, pyparsing
-, six
-, pytestCheckHook
-, pretend
-}:
-
-# We keep 20.4 because it uses setuptools instead of flit-core
-# which requires Python 3 to build a universal wheel.
-
-buildPythonPackage rec {
-  pname = "packaging";
-  version = "20.4";
-  format = "setuptools";
-
-  src = fetchPypi {
-    inherit pname version;
-    sha256 = "4357f74f47b9c12db93624a82154e9b120fa8293699949152b22065d556079f8";
-  };
-
-  propagatedBuildInputs = [ pyparsing six ];
-
-  checkInputs = [
-    pytestCheckHook
-    pretend
-  ];
-
-  # Prevent circular dependency
-  doCheck = false;
-
-  meta = with lib; {
-    description = "Core utilities for Python packages";
-    homepage = "https://github.com/pypa/packaging";
-    license = [ licenses.bsd2 licenses.asl20 ];
-    maintainers = with maintainers; [ bennofs ];
-  };
-}