mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-11 06:34:13 +00:00
zipfile2: Mark as broken on Python 3.12
(cherry picked from commit d1828e7501
)
This commit is contained in:
parent
baf5166949
commit
9b92ac6e5d
@ -2,6 +2,7 @@
|
|||||||
buildPythonPackage,
|
buildPythonPackage,
|
||||||
fetchFromGitHub,
|
fetchFromGitHub,
|
||||||
lib,
|
lib,
|
||||||
|
pythonAtLeast,
|
||||||
}:
|
}:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
@ -25,5 +26,6 @@ buildPythonPackage rec {
|
|||||||
description = "A backwards-compatible improved zipfile class";
|
description = "A backwards-compatible improved zipfile class";
|
||||||
maintainers = with maintainers; [ genericnerdyusername ];
|
maintainers = with maintainers; [ genericnerdyusername ];
|
||||||
license = licenses.psfl;
|
license = licenses.psfl;
|
||||||
|
broken = pythonAtLeast "3.12"; # tests are failing because the signature of ZipInfo._decodeExtra changed
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user