pythonPackages.jenkins-job-builder: 3.0.1 -> 3.0.2

This commit is contained in:
Jonathan Ringer 2019-09-30 06:30:36 -07:00
parent 432ba5105b
commit 073f50593b

View File

@ -1,37 +1,32 @@
{ stdenv { lib, buildPythonPackage, fetchPypi, isPy27
, buildPythonPackage , fasteners
, fetchPypi , jinja2
, pbr , pbr
, mock
, python-jenkins , python-jenkins
, pyyaml , pyyaml
, six , six
, stevedore , stevedore
, isPy27
, fasteners
, jinja2
}: }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "jenkins-job-builder"; pname = "jenkins-job-builder";
version = "3.0.1"; version = "3.0.2";
disabled = !isPy27;
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;
sha256 = "16x97pdr90x3xsc1xl66l7q77pgja5dzsk921by2h09k7dvxaqmh"; sha256 = "02ggscsyrrqk06w9lb43km77qgcj8cixrrm5mkigr4gz2pzdjhmf";
}; };
postPatch = '' postPatch = ''
export HOME=$TMPDIR export HOME=$TMPDIR
''; '';
propagatedBuildInputs = [ pbr mock python-jenkins pyyaml six stevedore fasteners jinja2 ]; propagatedBuildInputs = [ pbr python-jenkins pyyaml six stevedore fasteners jinja2 ];
# Need to fix test deps # Need to fix test deps, relies on stestr and a few other packages that aren't available on nixpkgs
doCheck = false; checkPhase = ''$out/bin/jenkins-jobs --help'';
meta = with stdenv.lib; { meta = with lib; {
description = "Jenkins Job Builder is a system for configuring Jenkins jobs using simple YAML files stored in Git"; 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"; homepage = "https://docs.openstack.org/infra/system-config/jjb.html";
license = licenses.asl20; license = licenses.asl20;