python310Packages.gemfileparser2: fix invalid specifier

This commit is contained in:
Fabian Affolter 2023-04-23 12:00:56 +02:00
parent fe2ecaf706
commit 877095c0f2

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