Unverified Commit 515eb6ba authored by Fabian Affolter's avatar Fabian Affolter Committed by GitHub
Browse files

Merge pull request #334075 from fabaff/asana-fix

python312Packages.asana: 5.0.7 -> 5.0.8
parents dd342395 7d04ba08
Loading
Loading
Loading
Loading
+12 −5
Original line number Diff line number Diff line
{
  lib,
  buildPythonPackage,
  certifi,
  fetchFromGitHub,
  pytestCheckHook,
  python-dateutil,
  python-dotenv,
  pythonOlder,
  setuptools,
  certifi,
  six,
  python-dateutil,
  urllib3,
  pytestCheckHook,
}:

buildPythonPackage rec {
  pname = "asana";
  version = "5.0.7";
  version = "5.0.8";
  pyproject = true;

  disabled = pythonOlder "3.7";
@@ -22,7 +23,7 @@ buildPythonPackage rec {
    owner = "asana";
    repo = "python-asana";
    rev = "refs/tags/v${version}";
    hash = "sha256-X6444LU2hcx4Er5N+WbSjgbe2tHjl1y1z5FqZGngiOw=";
    hash = "sha256-JC7t8im5OlvQlln9mUJHWMRJ1cRyAwfbIVQ0U3Q1KsU=";
  };

  build-system = [ setuptools ];
@@ -31,6 +32,7 @@ buildPythonPackage rec {
    certifi
    six
    python-dateutil
    python-dotenv
    urllib3
  ];

@@ -38,6 +40,11 @@ buildPythonPackage rec {

  pythonImportsCheck = [ "asana" ];

  disabledTestPaths = [
    # Tests require network access
    "build_tests/"
  ];

  meta = with lib; {
    description = "Python client library for Asana";
    homepage = "https://github.com/asana/python-asana";