mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-10 01:53:09 +09:00
Merge pull request #314949 from NixOS/backport-314557-to-release-24.05
[Backport release-24.05] zipfile2: Mark as broken on Python 3.12
This commit is contained in:
commit
ae63e4aa52
1 changed files with 2 additions and 0 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue