about summary refs log tree commit diff
path: root/pkgs/development/python2-modules
diff options
context:
space:
mode:
authorFabián Heredia Montiel <fabianhjr@protonmail.com>2022-12-12 19:47:52 -0600
committerRobert Schütz <github@dotlambda.de>2022-12-15 00:28:46 -0800
commit2230108f55c9c810270b473298eec71139d7387e (patch)
tree7238d357e89eba6ee8cc636b7f95c8ec6663dc0c /pkgs/development/python2-modules
parent6ea94a2cf8dd622c980cc2821d05fb20ff6daadf (diff)
downloadnixlib-2230108f55c9c810270b473298eec71139d7387e.tar
nixlib-2230108f55c9c810270b473298eec71139d7387e.tar.gz
nixlib-2230108f55c9c810270b473298eec71139d7387e.tar.bz2
nixlib-2230108f55c9c810270b473298eec71139d7387e.tar.lz
nixlib-2230108f55c9c810270b473298eec71139d7387e.tar.xz
nixlib-2230108f55c9c810270b473298eec71139d7387e.tar.zst
nixlib-2230108f55c9c810270b473298eec71139d7387e.zip
python2Packages.typing: revert removal
This reverts commit ff692673773f18ca8940486f3a020212df2b7e76.
Diffstat (limited to 'pkgs/development/python2-modules')
-rw-r--r--pkgs/development/python2-modules/typing/default.nix32
1 files changed, 32 insertions, 0 deletions
diff --git a/pkgs/development/python2-modules/typing/default.nix b/pkgs/development/python2-modules/typing/default.nix
new file mode 100644
index 000000000000..a835be985ff4
--- /dev/null
+++ b/pkgs/development/python2-modules/typing/default.nix
@@ -0,0 +1,32 @@
+{ 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;
+  };
+}