depot/third_party/nixpkgs/pkgs/development/python-modules/atlassian-python-api/default.nix
Default email 9405df4a82 Project import generated by Copybara.
GitOrigin-RevId: 8e4fe32876ca15e3d5eb3ecd3ca0b224417f5f17
2021-04-26 15:14:03 -04:00

37 lines
747 B
Nix
Executable file

{ lib
, buildPythonPackage
, fetchPypi
, isPy3k
, certifi
, chardet
, deprecated
, idna
, oauthlib
, requests
, requests_oauthlib
, six
, urllib3
, pytestrunner
, pytest
}:
buildPythonPackage rec {
pname = "atlassian-python-api";
version = "3.8.0";
src = fetchPypi {
inherit pname version;
sha256 = "7ef384a91a790c807336e2bd6b7554284691aadd6d7413d199baf752dd84c53e";
};
checkInputs = [ pytestrunner pytest ];
propagatedBuildInputs = [ deprecated 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 ];
};
}