29cde60208
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/python2.7-jenkins-job-builder/versions
42 lines
847 B
Nix
42 lines
847 B
Nix
{ stdenv
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, pbr
|
|
, mock
|
|
, python-jenkins
|
|
, pyyaml
|
|
, six
|
|
, stevedore
|
|
, isPy27
|
|
, fasteners
|
|
, jinja2
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "jenkins-job-builder";
|
|
version = "2.10.1";
|
|
disabled = !isPy27;
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "0iynzxrjmdkrriw4pcf8as8afckvmq4jk457lxg52wh29l39wb30";
|
|
};
|
|
|
|
postPatch = ''
|
|
export HOME=$TMPDIR
|
|
'';
|
|
|
|
propagatedBuildInputs = [ pbr mock python-jenkins pyyaml six stevedore fasteners jinja2 ];
|
|
|
|
# Need to fix test deps
|
|
doCheck = false;
|
|
|
|
meta = with stdenv.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/system-config/jjb.html";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ ];
|
|
};
|
|
|
|
}
|