1{ lib 2, buildPythonPackage 3, fetchFromGitHub 4, deprecated 5, oauthlib 6, requests 7, requests_oauthlib 8, six 9, pytestCheckHook 10}: 11 12buildPythonPackage rec { 13 pname = "atlassian-python-api"; 14 version = "3.8.0"; 15 16 src = fetchFromGitHub { 17 owner = "atlassian-api"; 18 repo = pname; 19 rev = version; 20 sha256 = "sha256-J0/CtfBtOdWReKQS/VvOL/3r+j4zJfnv/ICIXepKUvc="; 21 }; 22 23 checkInputs = [ 24 pytestCheckHook 25 ]; 26 27 propagatedBuildInputs = [ deprecated oauthlib requests requests_oauthlib six ]; 28 29 meta = with lib; { 30 description = "Python Atlassian REST API Wrapper"; 31 homepage = "https://github.com/atlassian-api/atlassian-python-api"; 32 license = licenses.asl20; 33 maintainers = [ maintainers.arnoldfarkas ]; 34 }; 35}