From 4e0ca3fbfeffa67ffc28ce71454c2447fc362b21 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Tue, 3 Sep 2024 17:42:19 +0200 Subject: [PATCH] python312Packages.nocaselist: 2.0.2 -> 2.0.3 Changelog: https://github.com/pywbem/nocaselist/blob/2.0.3/docs/changes.rst --- .../python-modules/nocaselist/default.nix | 17 ++++++++++------- 1 file changed, 10 insertions(+), 7 deletions(-) diff --git a/pkgs/development/python-modules/nocaselist/default.nix b/pkgs/development/python-modules/nocaselist/default.nix index c8129568a5ce..ddb10ecf6fdc 100644 --- a/pkgs/development/python-modules/nocaselist/default.nix +++ b/pkgs/development/python-modules/nocaselist/default.nix @@ -2,26 +2,29 @@ lib, buildPythonPackage, fetchPypi, - pytest7CheckHook, + pytestCheckHook, pythonOlder, + setuptools, six, }: buildPythonPackage rec { pname = "nocaselist"; - version = "2.0.2"; - format = "setuptools"; + version = "2.0.3"; + pyproject = true; - disabled = pythonOlder "3.7"; + disabled = pythonOlder "3.10"; src = fetchPypi { inherit pname version; - hash = "sha256-MnCLcAoaUxM+a7XMUzMsl3Wwx8lZpflyV5MXH9L0yKU="; + hash = "sha256-VXFNqEM/tIQ855dASXfkOF1ePfnkqgD33emD/YdBD+8="; }; - propagatedBuildInputs = [ six ]; + build-system = [ setuptools ]; - nativeCheckInputs = [ pytest7CheckHook ]; + dependencies = [ six ]; + + nativeCheckInputs = [ pytestCheckHook ]; pythonImportsCheck = [ "nocaselist" ];