python2Packages.typing: drop

This commit is contained in:
Sigmanificient
2026-01-14 04:38:22 +01:00
parent 7b9b35957d
commit 19816aeeb1
2 changed files with 0 additions and 39 deletions
@@ -1,37 +0,0 @@
{
lib,
buildPythonPackage,
fetchPypi,
isPy3k,
unittestCheckHook,
}:
let
testDir = if isPy3k then "src" else "python2";
in
buildPythonPackage rec {
pname = "typing";
version = "3.10.0.0";
format = "setuptools";
src = fetchPypi {
inherit pname version;
sha256 = "13b4ad211f54ddbf93e5901a9967b1e07720c1d1b78d596ac6a439641aa1b130";
};
disabled = true;
nativeCheckInputs = [ unittestCheckHook ];
unittestFlagsArray = [
"-s"
testDir
];
meta = {
description = "Backport of typing module to Python versions older than 3.5";
homepage = "https://docs.python.org/3/library/typing.html";
license = lib.licenses.psfl;
};
}