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";
|
2022-04-15 01:41:22 +00:00
|
|
|
version = "4.0.0";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2022-04-15 01:41:22 +00:00
|
|
|
sha256 = "sha256-6bsiq3LwlBZdF378HXEIgZSKf7NsTjo3bbSmt7XkYgM=";
|
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'
|
|
|
|
|
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; [ ];
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|