Merge pull request #214232 from FRidh/zipfile36

python3Packages.zipfile36: no longer used nor usable by any supported…

authored by Martin Weinelt and committed by GitHub a100acd7 f90a34bb

-34
-32
pkgs/development/python-modules/zipfile36/default.nix
··· 1 - { lib 2 - , buildPythonPackage 3 - , fetchPypi 4 - , python 5 - , isPy3k 6 - , pythonOlder 7 - }: 8 - 9 - buildPythonPackage rec { 10 - pname = "zipfile36"; 11 - version = "0.1.3"; 12 - 13 - src = fetchPypi { 14 - inherit pname version; 15 - sha256 = "a78a8dddf4fa114f7fe73df76ffcce7538e23433b7a6a96c1c904023f122aead"; 16 - }; 17 - 18 - checkPhase = '' 19 - ${python.interpreter} -m unittest test_zipfile.py 20 - ''; 21 - 22 - # Only works with Python 3.x. 23 - # Not supposed to be used with 3.6 and up. 24 - disabled = !(isPy3k && (pythonOlder "3.6")); 25 - 26 - meta = { 27 - description = "Read and write ZIP files - backport of the zipfile module from Python 3.6"; 28 - homepage = "https://gitlab.com/takluyver/zipfile36"; 29 - license = lib.licenses.psfl; 30 - maintainers = [ lib.maintainers.fridh ]; 31 - }; 32 - }
-2
pkgs/top-level/python-packages.nix
··· 12614 12614 12615 12615 zimports = callPackage ../development/python-modules/zimports { }; 12616 12616 12617 - zipfile36 = callPackage ../development/python-modules/zipfile36 { }; 12618 - 12619 12617 zipp = callPackage ../development/python-modules/zipp { }; 12620 12618 12621 12619 zipstream = callPackage ../development/python-modules/zipstream { };