0
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-07-13 13:40:28 +03:00

python3Packages.commoncode: relax intbitset constraint

This commit is contained in:
Martin Weinelt 2022-03-08 20:41:21 +01:00
parent d5631f0038
commit 9554c3721f

View file

@ -20,7 +20,7 @@
buildPythonPackage rec {
pname = "commoncode";
version = "30.0.0";
format = "setuptools";
format = "pyproject";
disabled = pythonOlder "3.6";
@ -29,6 +29,11 @@ buildPythonPackage rec {
sha256 = "sha256-6SeU4u6pfDuGCgCYAO5fdbWBxW9XN3WvM8j6DwUlFwM=";
};
postPatch = ''
substituteInPlace setup.cfg \
--replace "intbitset >= 2.3.0, < 3.0" "intbitset >= 2.3.0"
'';
dontConfigure = true;
nativeBuildInputs = [