Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ lib 2, buildPythonPackage 3, fetchPypi 4, isPy3k 5, certifi 6, chardet 7, idna 8, oauthlib 9, requests 10, requests_oauthlib 11, six 12, urllib3 13, pytestrunner 14, pytest 15}: 16 17buildPythonPackage rec { 18 pname = "atlassian-python-api"; 19 version = "1.16.1"; 20 21 src = fetchPypi { 22 inherit pname version; 23 sha256 = "b672131be7cc5e239c465909454542623c0aeb0a4d3b05e6a25ee9459959c11d"; 24 }; 25 26 checkInputs = [ pytestrunner pytest ]; 27 28 propagatedBuildInputs = [ oauthlib requests requests_oauthlib six ]; 29 30 meta = with lib; { 31 description = "Python Atlassian REST API Wrapper"; 32 homepage = "https://github.com/atlassian-api/atlassian-python-api"; 33 license = licenses.asl20; 34 maintainers = [ maintainers.arnoldfarkas ]; 35 }; 36}