lol

python311Packages.immutables: remove unused import

authored by

Fabian Affolter and committed by
GitHub
fceaa2d5 4e4e72b8

+1 -6
+1 -6
pkgs/development/python-modules/immutables/default.nix
··· 3 3 , fetchFromGitHub 4 4 , pytestCheckHook 5 5 , pythonOlder 6 - , typing-extensions 7 6 }: 8 7 9 8 buildPythonPackage rec { ··· 11 10 version = "0.20"; 12 11 format = "setuptools"; 13 12 14 - disabled = pythonOlder "3.6"; 13 + disabled = pythonOlder "3.8"; 15 14 16 15 src = fetchFromGitHub { 17 16 owner = "MagicStack"; ··· 23 22 postPatch = '' 24 23 rm tests/conftest.py 25 24 ''; 26 - 27 - propagatedBuildInputs = lib.optionals (pythonOlder "3.8") [ 28 - typing-extensions 29 - ]; 30 25 31 26 nativeCheckInputs = [ 32 27 pytestCheckHook