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.8";
15
16 src = fetchPypi {
17 inherit pname version;
18 sha256 = "120adfc9cea83fb890744b5049c5bb7edc77699059f0da62db66354ec27c54e2";
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 };
30
31}