New package: jenkins-job-builder

This commit is contained in:
Benjamin Staffin
2015-04-29 19:14:40 -07:00
parent ba50d48400
commit 3a371528bb
3 changed files with 69 additions and 0 deletions

View File

@@ -0,0 +1,26 @@
{ stdenv, fetchurl, pythonPackages, buildPythonPackage, git }:
let
upstreamName = "jenkins-job-builder";
version = "1.2.0";
in
buildPythonPackage rec {
name = "${upstreamName}-${version}";
namePrefix = ""; # Don't prepend "pythonX.Y-" to the name
src = fetchurl {
url = "https://pypi.python.org/packages/source/j/${upstreamName}/${name}.tar.gz";
sha256 = "09nxdhb0ilxpmk5gbvik6kj9b6j718j5an903dpcvi3r6vzk9b3p";
};
pythonPath = with pythonPackages; [ pip six pyyaml pbr python-jenkins ];
doCheck = false; # Requires outdated Sphinx
meta = {
description = "System for configuring Jenkins jobs using simple YAML files";
homepage = http://ci.openstack.org/jjb.html;
license = stdenv.lib.licenses.asl20;
};
}