Merge pull request #227764 from fabaff/gemfileparser2-fix

python310Packages.gemfileparser2: fix invalid specifier
This commit is contained in:
Fabian Affolter
2023-04-23 22:41:11 +02:00
committed by GitHub
@@ -20,6 +20,12 @@ buildPythonPackage rec {
dontConfigure = true;
postPatch = ''
# https://github.com/nexB/gemfileparser2/pull/8
substituteInPlace setup.cfg \
--replace ">=3.6.*" ">=3.6"
'';
nativeBuildInputs = [
setuptools-scm
];