python310Packages.fpyutils: 2.2.1 -> 3.0.1

Changelog: https://blog.franco.net.eu.org/software/fpyutils-3.0.1/release.html
This commit is contained in:
Fabian Affolter 2023-01-05 21:53:54 +01:00
parent c91168d80a
commit ae5e85d2ee

View file

@ -9,16 +9,16 @@
buildPythonPackage rec {
pname = "fpyutils";
version = "2.2.1";
version = "3.0.1";
format = "setuptools";
disabled = pythonOlder "3.5";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "frnmst";
repo = pname;
rev = "refs/tags/${version}";
hash = "sha256-5dikfR648AhQUMX/hS0igIy9gnMyxUHddp1xaxNyYCo=";
hash = "sha256-cmCD8uKPX/7Ak6jAqzCvDqR1FgH09GaLfLTZdBQB+bs=";
};
propagatedBuildInputs = [
@ -46,7 +46,7 @@ buildPythonPackage rec {
meta = with lib; {
description = "Collection of useful non-standard Python functions";
homepage = "https://github.com/frnmst/fpyutils";
changelog = "https://blog.franco.net.eu.org/software/fpyutils-3.0.1/release.html";
changelog = "https://blog.franco.net.eu.org/software/fpyutils-${version}/release.html";
license = with licenses; [ gpl3Plus ];
maintainers = with maintainers; [ fab ];
};