nixpkgs/pkgs/development/python-modules/python-jenkins/default.nix
volth f3282c8d1e treewide: remove unused variables (#63177)
* treewide: remove unused variables

* making ofborg happy
2019-06-16 19:59:05 +00:00

40 lines
759 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, mock
, pbr
, pyyaml
, six
, multi_key_dict
, testscenarios
, requests
, unittest2
, requests-mock
}:
buildPythonPackage rec {
pname = "python-jenkins";
version = "1.4.0";
src = fetchPypi {
inherit pname version;
sha256 = "1h14hfcwichmppbgxf1k8njw29hchpav1kj574b4lly3j0n2vnag";
};
buildInputs = [ mock ];
propagatedBuildInputs = [ pbr pyyaml six multi_key_dict requests ];
checkInputs = [ unittest2 testscenarios requests-mock ];
checkPhase = ''
unit2
'';
meta = with lib; {
description = "Python bindings for the remote Jenkins API";
homepage = https://pypi.python.org/pypi/python-jenkins;
license = licenses.bsd3;
maintainers = with maintainers; [ ma27 ];
};
}