Commit e9e3f2e7 authored by Bjørn Forsman's avatar Bjørn Forsman
Browse files

python3.pkgs.jenkins-job-builder: fix build by relaxing setuptools requirement

Now that python-jenkins builds (thanks to the parent commit), this
change allows jenkins-job-builder to build again.
parent e3d764a4
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
@@ -20,6 +20,10 @@ buildPythonPackage rec {
    # relax version constraint, https://storyboard.openstack.org/#!/story/2009723
    substituteInPlace requirements.txt --replace 'PyYAML>=3.10.0,<6' 'PyYAML>=3.10.0'

    # Allow building with setuptools from nixpkgs.
    # Related: https://github.com/NixOS/nixpkgs/issues/238226.
    substituteInPlace requirements.txt --replace 'setuptools<=65.7.0' 'setuptools'

    export HOME=$TMPDIR
  '';