60f07311b9
GitOrigin-RevId: f8e2ebd66d097614d51a56a755450d4ae1632df1
36 lines
919 B
Nix
36 lines
919 B
Nix
{ lib, buildPythonPackage, fetchPypi, fasteners
|
|
, jinja2
|
|
, pbr
|
|
, python-jenkins
|
|
, pyyaml
|
|
, six
|
|
, stevedore
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "jenkins-job-builder";
|
|
version = "6.0.0";
|
|
format = "setuptools";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-queP6RBpw32PXbpz6StIE6Pb7RNsm2O4tNarrDwb2cU=";
|
|
};
|
|
|
|
postPatch = ''
|
|
export HOME=$(mktemp -d)
|
|
'';
|
|
|
|
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
|
|
checkPhase = "$out/bin/jenkins-jobs --help";
|
|
|
|
meta = with lib; {
|
|
description = "Jenkins Job Builder is a system for configuring Jenkins jobs using simple YAML files stored in Git";
|
|
homepage = "https://jenkins-job-builder.readthedocs.io/en/latest/";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ ];
|
|
};
|
|
|
|
}
|