evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / development / python-modules / atlassian-python-api / default.nix
blob20e01126b97455bcf26d6bd8981cba2bee44a4b6
2   lib,
3   buildPythonPackage,
4   fetchFromGitHub,
5   beautifulsoup4,
6   deprecated,
7   jmespath,
8   lxml,
9   oauthlib,
10   requests,
11   requests-kerberos,
12   requests-oauthlib,
13   six,
14   pytestCheckHook,
15   pythonOlder,
18 buildPythonPackage rec {
19   pname = "atlassian-python-api";
20   version = "3.41.16";
21   format = "setuptools";
23   disabled = pythonOlder "3.7";
25   src = fetchFromGitHub {
26     owner = "atlassian-api";
27     repo = pname;
28     rev = "refs/tags/${version}";
29     hash = "sha256-HhFGM8EPGCT3WqVf6WP6VvwsppvzFvHg+ys7GhUUwW0=";
30   };
32   propagatedBuildInputs = [
33     beautifulsoup4
34     deprecated
35     jmespath
36     lxml
37     oauthlib
38     requests
39     requests-kerberos
40     requests-oauthlib
41     six
42   ];
44   nativeCheckInputs = [ pytestCheckHook ];
46   pythonImportsCheck = [ "atlassian" ];
48   meta = with lib; {
49     description = "Python Atlassian REST API Wrapper";
50     homepage = "https://github.com/atlassian-api/atlassian-python-api";
51     changelog = "https://github.com/atlassian-api/atlassian-python-api/releases/tag/${version}";
52     license = licenses.asl20;
53     maintainers = with maintainers; [ arnoldfarkas ];
54   };