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.

Changed files
+4
pkgs
development
python-modules
jenkins-job-builder
+4
pkgs/development/python-modules/jenkins-job-builder/default.nix
···
# 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
'';