0
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-07-13 21:50:33 +03:00

python3Packages.atlassian-python-api: add pythonImportsCheck

This commit is contained in:
Fabian Affolter 2022-02-08 17:55:18 +01:00 committed by GitHub
parent 26b1df8a99
commit 092fe80925
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -7,11 +7,15 @@
, requests_oauthlib , requests_oauthlib
, six , six
, pytestCheckHook , pytestCheckHook
, pythonOlder
}: }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "atlassian-python-api"; pname = "atlassian-python-api";
version = "3.19.0"; version = "3.19.0";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "atlassian-api"; owner = "atlassian-api";
@ -20,16 +24,26 @@ buildPythonPackage rec {
sha256 = "sha256-SJsqk8TM+5UztN1ZDyYrOjNIWDLhm5XtLxPflIGPxKQ="; sha256 = "sha256-SJsqk8TM+5UztN1ZDyYrOjNIWDLhm5XtLxPflIGPxKQ=";
}; };
propagatedBuildInputs = [
deprecated
oauthlib
requests
requests_oauthlib
six
];
checkInputs = [ checkInputs = [
pytestCheckHook pytestCheckHook
]; ];
propagatedBuildInputs = [ deprecated oauthlib requests requests_oauthlib six ]; pythonImportsCheck = [
"atlassian"
];
meta = with lib; { meta = with lib; {
description = "Python Atlassian REST API Wrapper"; description = "Python Atlassian REST API Wrapper";
homepage = "https://github.com/atlassian-api/atlassian-python-api"; homepage = "https://github.com/atlassian-api/atlassian-python-api";
license = licenses.asl20; license = licenses.asl20;
maintainers = [ maintainers.arnoldfarkas ]; maintainers = with maintainers; [ arnoldfarkas ];
}; };
} }