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
commit 29daff8283
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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
];