Merge pull request #248347 from fabaff/todoist-api-python-bump

python311Packages.todoist-api-python: 2.0.2 -> 2.1.1
This commit is contained in:
Fabian Affolter 2023-08-11 18:03:00 +02:00 committed by GitHub
commit defe17b19a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,5 +1,4 @@
{ lib
, attrs
, buildPythonPackage
, fetchFromGitHub
, fetchpatch
@ -13,16 +12,16 @@
buildPythonPackage rec {
pname = "todoist-api-python";
version = "2.0.2";
version = "2.1.1";
format = "pyproject";
disabled = pythonOlder "3.7";
disabled = pythonOlder "3.11";
src = fetchFromGitHub {
owner = "Doist";
repo = pname;
rev = "refs/tags/v${version}";
hash = "sha256-CKOsUb35+7WjSNf4Xo0SK5loIqWJbEnHdmhw9QXWFAI=";
hash = "sha256-mBQCC1beBAB+vDV/TrQHQB7cTjjoCDZlqpiYP8IphUA=";
};
patches = [
@ -39,7 +38,6 @@ buildPythonPackage rec {
];
propagatedBuildInputs = [
attrs
requests
];