nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix

python310Packages.container-inspector: fix invalid version specifier

authored by

Fabian Affolter and committed by
Martin Weinelt
da8f2be2 678a43fa

+6
+6
pkgs/development/python-modules/container-inspector/default.nix
··· 28 28 29 29 dontConfigure = true; 30 30 31 + postPatch = '' 32 + # PEP440 support was removed in newer setuptools, https://github.com/nexB/container-inspector/pull/51 33 + substituteInPlace setup.cfg \ 34 + --replace ">=3.7.*" ">=3.7" 35 + ''; 36 + 31 37 nativeBuildInputs = [ 32 38 setuptools-scm 33 39 ];