python311Packages.immutables: remove unused import

This commit is contained in:
Fabian Affolter 2023-08-16 23:24:13 +02:00 committed by GitHub
parent 4e4e72b8c4
commit fceaa2d5cd
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -3,7 +3,6 @@
, fetchFromGitHub
, pytestCheckHook
, pythonOlder
, typing-extensions
}:
buildPythonPackage rec {
@ -11,7 +10,7 @@ buildPythonPackage rec {
version = "0.20";
format = "setuptools";
disabled = pythonOlder "3.6";
disabled = pythonOlder "3.8";
src = fetchFromGitHub {
owner = "MagicStack";
@ -24,10 +23,6 @@ buildPythonPackage rec {
rm tests/conftest.py
'';
propagatedBuildInputs = lib.optionals (pythonOlder "3.8") [
typing-extensions
];
nativeCheckInputs = [
pytestCheckHook
];