From ae5e85d2ee6d514d2f30c0d96358234bc9865668 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Thu, 5 Jan 2023 21:53:54 +0100 Subject: [PATCH] python310Packages.fpyutils: 2.2.1 -> 3.0.1 Changelog: https://blog.franco.net.eu.org/software/fpyutils-3.0.1/release.html --- pkgs/development/python-modules/fpyutils/default.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/development/python-modules/fpyutils/default.nix b/pkgs/development/python-modules/fpyutils/default.nix index bc36a5abec7..21ddae351f1 100644 --- a/pkgs/development/python-modules/fpyutils/default.nix +++ b/pkgs/development/python-modules/fpyutils/default.nix @@ -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 ]; };