about summary refs log tree commit diff
path: root/pkgs/development/python2-modules
diff options
context:
space:
mode:
authorRobert Schütz <nix@dotlambda.de>2022-12-09 08:27:02 -0800
committerRobert Schütz <nix@dotlambda.de>2022-12-09 08:37:41 -0800
commitff692673773f18ca8940486f3a020212df2b7e76 (patch)
tree8460eb98b212b3fd14ef1ddf0d6ea1b5418814c4 /pkgs/development/python2-modules
parentc2b5367847e7680e7312adc9a4b427fb67e1a9d9 (diff)
downloadnixlib-ff692673773f18ca8940486f3a020212df2b7e76.tar
nixlib-ff692673773f18ca8940486f3a020212df2b7e76.tar.gz
nixlib-ff692673773f18ca8940486f3a020212df2b7e76.tar.bz2
nixlib-ff692673773f18ca8940486f3a020212df2b7e76.tar.lz
nixlib-ff692673773f18ca8940486f3a020212df2b7e76.tar.xz
nixlib-ff692673773f18ca8940486f3a020212df2b7e76.tar.zst
nixlib-ff692673773f18ca8940486f3a020212df2b7e76.zip
python2Packages.typing: remove
Diffstat (limited to 'pkgs/development/python2-modules')
-rw-r--r--pkgs/development/python2-modules/typing/default.nix32
1 files changed, 0 insertions, 32 deletions
diff --git a/pkgs/development/python2-modules/typing/default.nix b/pkgs/development/python2-modules/typing/default.nix
deleted file mode 100644
index a835be985ff4..000000000000
--- a/pkgs/development/python2-modules/typing/default.nix
+++ /dev/null
@@ -1,32 +0,0 @@
-{ lib, buildPythonPackage, fetchPypi, pythonOlder, isPy3k, isPyPy, unittestCheckHook
-, pythonAtLeast }:
-
-let
-  testDir = if isPy3k then "src" else "python2";
-
-in buildPythonPackage rec {
-  pname = "typing";
-  version = "3.10.0.0";
-
-  src = fetchPypi {
-    inherit pname version;
-    sha256 = "13b4ad211f54ddbf93e5901a9967b1e07720c1d1b78d596ac6a439641aa1b130";
-  };
-
-  disabled = pythonAtLeast "3.5";
-
-  # Error for Python3.6: ImportError: cannot import name 'ann_module'
-  # See https://github.com/python/typing/pull/280
-  # Also, don't bother on PyPy: AssertionError: TypeError not raised
-  doCheck = pythonOlder "3.6" && !isPyPy;
-
-  checkInputs = [ unittestCheckHook ];
-
-  unittestFlagsArray = [ "-s" testDir ];
-
-  meta = with lib; {
-    description = "Backport of typing module to Python versions older than 3.5";
-    homepage = "https://docs.python.org/3/library/typing.html";
-    license = licenses.psfl;
-  };
-}