nixpkgs/pkgs/development/python-modules/atlassian-python-api/default.nix

36 lines
735 B
Nix
Raw Permalink Normal View History

{ lib
, buildPythonPackage
, fetchFromGitHub
, deprecated
, oauthlib
, requests
, requests_oauthlib
, six
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "atlassian-python-api";
version = "3.8.0";
2020-08-25 02:07:09 +00:00
src = fetchFromGitHub {
owner = "atlassian-api";
repo = pname;
rev = version;
sha256 = "sha256-J0/CtfBtOdWReKQS/VvOL/3r+j4zJfnv/ICIXepKUvc=";
};
2020-08-25 02:07:09 +00:00
checkInputs = [
pytestCheckHook
];
2020-08-25 02:07:09 +00:00
propagatedBuildInputs = [ deprecated oauthlib requests requests_oauthlib six ];
2020-08-25 02:07:09 +00:00
meta = with lib; {
description = "Python Atlassian REST API Wrapper";
homepage = "https://github.com/atlassian-api/atlassian-python-api";
license = licenses.asl20;
maintainers = [ maintainers.arnoldfarkas ];
};
}