Merge pull request #207976 from r-ryantm/auto-update/python310Packages.asana

python310Packages.asana: 2.0.0 -> 3.0.0
This commit is contained in:
Fabian Affolter 2022-12-28 09:19:03 +01:00 committed by GitHub
commit 671be4403c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -6,12 +6,11 @@
, requests , requests
, requests-oauthlib , requests-oauthlib
, responses , responses
, six
}: }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "asana"; pname = "asana";
version = "2.0.0"; version = "3.0.0";
format = "setuptools"; format = "setuptools";
disabled = pythonOlder "3.7"; disabled = pythonOlder "3.7";
@ -20,13 +19,12 @@ buildPythonPackage rec {
owner = "asana"; owner = "asana";
repo = "python-asana"; repo = "python-asana";
rev = "refs/tags/v${version}"; rev = "refs/tags/v${version}";
sha256 = "sha256-sY7M446krFIcyWkN2pk9FTa+VTXEOZ6xnHePx35e8IY="; hash = "sha256-+lktPFCL2c79dNGgbsaFJRELmV6sJ2kiBSb8kd9XPIQ=";
}; };
propagatedBuildInputs = [ propagatedBuildInputs = [
requests requests
requests-oauthlib requests-oauthlib
six
]; ];
checkInputs = [ checkInputs = [
@ -41,6 +39,7 @@ buildPythonPackage rec {
meta = with lib; { meta = with lib; {
description = "Python client library for Asana"; description = "Python client library for Asana";
homepage = "https://github.com/asana/python-asana"; homepage = "https://github.com/asana/python-asana";
changelog = "https://github.com/Asana/python-asana/releases/tag/v${version}";
license = licenses.mit; license = licenses.mit;
maintainers = with maintainers; [ ]; maintainers = with maintainers; [ ];
}; };