Unverified Commit 29daff82 authored by Fabian Affolter's avatar Fabian Affolter Committed by GitHub
Browse files

Merge pull request #227764 from fabaff/gemfileparser2-fix

python310Packages.gemfileparser2: fix invalid specifier
parents 8ac90631 877095c0
Loading
Loading
Loading
Loading
+6 −0
Original line number Diff line number Diff line
@@ -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
  ];