1{ stdenv
2, buildPythonPackage
3, fetchPypi
4, pytz
5, requests
6, coverage
7, mock
8, nose
9, unittest2
10}:
11
12buildPythonPackage rec {
13 pname = "jenkinsapi";
14 version = "0.3.11";
15
16 src = fetchPypi {
17 inherit pname version;
18 sha256 = "a212a244b0a6022a61657746c8120ac9b6db83432371b345154075eb8faceb61";
19 };
20
21 propagatedBuildInputs = [ pytz requests ];
22 buildInputs = [ coverage mock nose unittest2 ];
23
24 meta = with stdenv.lib; {
25 description = "A Python API for accessing resources on a Jenkins continuous-integration server";
26 homepage = "https://github.com/salimfadhley/jenkinsapi";
27 maintainers = with maintainers; [ drets ];
28 license = licenses.mit;
29 broken = true;
30 };
31
32}