Merge pull request #220672 from fabaff/flipr-api-bump

python310Packages.flipr-api: 1.4.4 -> 1.5.0
This commit is contained in:
Fabian Affolter 2023-03-12 17:50:24 +01:00 committed by GitHub
commit 0be739c34f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -12,7 +12,7 @@
buildPythonPackage rec {
pname = "flipr-api";
version = "1.4.4";
version = "1.5.0";
format = "pyproject";
disabled = pythonOlder "3.6";
@ -20,8 +20,8 @@ buildPythonPackage rec {
src = fetchFromGitHub {
owner = "cnico";
repo = pname;
rev = version;
sha256 = "sha256-LcxLJQ2MAif4yC+/SvO7IEa1lNOV67FgJU1UWT4ope4=";
rev = "refs/tags/${version}";
hash = "sha256-IAxB3i/HkwO5sjDh2aBCtijOcG0VIbatQjTWIh0inoM=";
};
nativeBuildInputs = [
@ -46,6 +46,7 @@ buildPythonPackage rec {
meta = with lib; {
description = "Python client for Flipr API";
homepage = "https://github.com/cnico/flipr-api";
changelog = "https://github.com/cnico/flipr-api/releases/tag/${version}";
license = licenses.mit;
maintainers = with maintainers; [ fab ];
};