2021-12-06 16:07:01 +00:00
|
|
|
{ lib, buildPythonPackage, fetchPypi, fasteners
|
2020-04-24 23:36:52 +00:00
|
|
|
, jinja2
|
|
|
|
, pbr
|
|
|
|
, python-jenkins
|
|
|
|
, pyyaml
|
|
|
|
, six
|
|
|
|
, stevedore
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "jenkins-job-builder";
|
2023-10-09 19:29:22 +00:00
|
|
|
version = "5.0.4";
|
2024-01-02 11:29:13 +00:00
|
|
|
format = "setuptools";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2023-10-09 19:29:22 +00:00
|
|
|
hash = "sha256-+zrsfyi4I8venFGMKXDMUq+9+f7y6IY59y1/OJDExGs=";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
postPatch = ''
|
2022-01-13 20:06:32 +00:00
|
|
|
# relax version constraint, https://storyboard.openstack.org/#!/story/2009723
|
|
|
|
substituteInPlace requirements.txt --replace 'PyYAML>=3.10.0,<6' 'PyYAML>=3.10.0'
|
|
|
|
|
2023-07-15 17:15:38 +00:00
|
|
|
# Allow building with setuptools from nixpkgs.
|
|
|
|
# Related: https://github.com/NixOS/nixpkgs/issues/238226.
|
|
|
|
substituteInPlace requirements.txt --replace 'setuptools<=65.7.0' 'setuptools'
|
|
|
|
|
2020-04-24 23:36:52 +00:00
|
|
|
export HOME=$TMPDIR
|
|
|
|
'';
|
|
|
|
|
|
|
|
propagatedBuildInputs = [ pbr python-jenkins pyyaml six stevedore fasteners jinja2 ];
|
|
|
|
|
|
|
|
# Need to fix test deps, relies on stestr and a few other packages that aren't available on nixpkgs
|
2021-02-05 17:12:51 +00:00
|
|
|
checkPhase = "$out/bin/jenkins-jobs --help";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "Jenkins Job Builder is a system for configuring Jenkins jobs using simple YAML files stored in Git";
|
|
|
|
homepage = "https://docs.openstack.org/infra/jenkins-job-builder/";
|
|
|
|
license = licenses.asl20;
|
|
|
|
maintainers = with maintainers; [ ];
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|