python.pkgs.jira: init at 1.0.14

This commit is contained in:
Robin Gloster 2018-04-19 17:47:32 +02:00
parent b8f9b2e552
commit b2c0126b94
No known key found for this signature in database
GPG Key ID: D5C458DF6DD97EDF
2 changed files with 29 additions and 0 deletions

View 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 ];
};
}

View File

@ -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 { };