about summary refs log tree commit diff
path: root/pkgs/development/python-modules/packaging
diff options
context:
space:
mode:
authorFrederik Rietdijk <fridh@fridh.nl>2020-11-30 19:04:14 +0100
committerFrederik Rietdijk <fridh@fridh.nl>2020-12-01 14:44:25 +0100
commit26ed734e5133c7fb04221692aa99fa7110388eda (patch)
tree518fab600a95711fccb8e6fd35959aab0562d559 /pkgs/development/python-modules/packaging
parent7d6468de0c54621f056403e6dae2c97f31700806 (diff)
python2Packages.packaging: keep 20.4 around
Diffstat (limited to 'pkgs/development/python-modules/packaging')
-rw-r--r--pkgs/development/python-modules/packaging/2.nix40
1 files changed, 40 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/packaging/2.nix b/pkgs/development/python-modules/packaging/2.nix
new file mode 100644
index 0000000000000..36764e64b860b
--- /dev/null
+++ b/pkgs/development/python-modules/packaging/2.nix
@@ -0,0 +1,40 @@
+{ stdenv
+, buildPythonPackage
+, fetchPypi
+, pyparsing
+, six
+, pytestCheckHook
+, pretend
+, flit-core
+}:
+
+# 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 stdenv.lib; {
+    description = "Core utilities for Python packages";
+    homepage = "https://github.com/pypa/packaging";
+    license = [ licenses.bsd2 licenses.asl20 ];
+    maintainers = with maintainers; [ bennofs ];
+  };
+}