mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
pythonPackages.atlassian-python-api: init at 1.14.9
This commit is contained in:
parent
d55c1b1d18
commit
4d80baf9b8
2 changed files with 39 additions and 0 deletions
37
pkgs/development/python-modules/atlassian-python-api/default.nix
Executable file
37
pkgs/development/python-modules/atlassian-python-api/default.nix
Executable file
|
@ -0,0 +1,37 @@
|
|||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, isPy3k
|
||||
, certifi
|
||||
, chardet
|
||||
, idna
|
||||
, oauthlib
|
||||
, requests
|
||||
, requests_oauthlib
|
||||
, six
|
||||
, urllib3
|
||||
, pytestrunner
|
||||
, pytest
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "atlassian-python-api";
|
||||
version = "1.14.9";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "28ff793cb43152384a810efc6ee572473daf3dc44bf7c1c295efb270a6d29251";
|
||||
};
|
||||
|
||||
checkInputs = [ pytestrunner pytest ];
|
||||
|
||||
propagatedBuildInputs = [ oauthlib requests requests_oauthlib six ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Python Atlassian REST API Wrapper";
|
||||
homepage = "https://github.com/atlassian-api/atlassian-python-api";
|
||||
license = licenses.asl20;
|
||||
maintainers = [ maintainers.arnoldfarkas ];
|
||||
};
|
||||
}
|
||||
|
|
@ -1662,6 +1662,8 @@ in {
|
|||
|
||||
asn1ate = callPackage ../development/python-modules/asn1ate { };
|
||||
|
||||
atlassian-python-api = callPackage ../development/python-modules/atlassian-python-api { };
|
||||
|
||||
atomiclong = callPackage ../development/python-modules/atomiclong { };
|
||||
|
||||
atomicwrites = callPackage ../development/python-modules/atomicwrites { };
|
||||
|
|
Loading…
Reference in a new issue