python.pkgs.jira: init at 1.0.14
This commit is contained in:
parent
b8f9b2e552
commit
b2c0126b94
27
pkgs/development/python-modules/jira/default.nix
Normal file
27
pkgs/development/python-modules/jira/default.nix
Normal file
@ -0,0 +1,27 @@
|
||||
{ lib, buildPythonPackage, fetchPypi, pytest, pytestrunner, pbr, glibcLocales
|
||||
, pytestcov
|
||||
, requests, requests_oauthlib, requests_toolbelt, defusedxml }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "jira";
|
||||
version = "1.0.14";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "1xncrcaqgj0gnva3bz5c4vwnn7z84v9cmr37pc93zx676w62fpm3";
|
||||
};
|
||||
|
||||
buildInputs = [ glibcLocales pytest pytestcov pytestrunner pbr ];
|
||||
propagatedBuildInputs = [ requests requests_oauthlib requests_toolbelt defusedxml ];
|
||||
|
||||
LC_ALL = "en_US.utf8";
|
||||
|
||||
# no tests in release tarball
|
||||
doCheck = false;
|
||||
|
||||
meta = with lib; {
|
||||
description = "This library eases the use of the JIRA REST API from Python.";
|
||||
license = licenses.bsd2;
|
||||
maintainers = with maintainers; [ globin ];
|
||||
};
|
||||
}
|
@ -271,6 +271,8 @@ in {
|
||||
|
||||
intelhex = callPackage ../development/python-modules/intelhex { };
|
||||
|
||||
jira = callPackage ../development/python-modules/jira { };
|
||||
|
||||
lmtpd = callPackage ../development/python-modules/lmtpd { };
|
||||
|
||||
logster = callPackage ../development/python-modules/logster { };
|
||||
|
Loading…
Reference in New Issue
Block a user