From ae06ec9b28047534ae7a7755b18709d9d376f688 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Tue, 26 Jul 2022 09:23:58 +0200 Subject: [PATCH] python310Packages.parts: 1.4.0 -> 1.5.1 --- pkgs/development/python-modules/parts/default.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/development/python-modules/parts/default.nix b/pkgs/development/python-modules/parts/default.nix index 0b2d246056f0..b1c520ded322 100644 --- a/pkgs/development/python-modules/parts/default.nix +++ b/pkgs/development/python-modules/parts/default.nix @@ -6,14 +6,14 @@ buildPythonPackage rec { pname = "parts"; - version = "1.4.0"; - format = "setuptools"; + version = "1.5.1"; + format = "pyproject"; disabled = pythonOlder "3.7"; src = fetchPypi { inherit pname version; - sha256 = "sha256-Qs6+3dWG5sjSmeQiL/Q2evn5TImEX0Yk/nCIe5uIMp4="; + hash = "sha256-H6nyn2TY1Ga65CyhxOSlgcDTTC1UJi8I/4damM6I7fM="; }; # Project has no tests @@ -24,7 +24,7 @@ buildPythonPackage rec { ]; meta = with lib; { - description = "Python library for common list functions related to partitioning lists"; + description = "Library for common list functions related to partitioning lists"; homepage = "https://github.com/lapets/parts"; license = with licenses; [ mit ]; maintainers = with maintainers; [ fab ];