python312Packages.nocaselist: 2.0.2 -> 2.0.3

Changelog: https://github.com/pywbem/nocaselist/blob/2.0.3/docs/changes.rst

+10 -7
+10 -7
pkgs/development/python-modules/nocaselist/default.nix
··· 2 2 lib, 3 3 buildPythonPackage, 4 4 fetchPypi, 5 - pytest7CheckHook, 5 + pytestCheckHook, 6 6 pythonOlder, 7 + setuptools, 7 8 six, 8 9 }: 9 10 10 11 buildPythonPackage rec { 11 12 pname = "nocaselist"; 12 - version = "2.0.2"; 13 - format = "setuptools"; 13 + version = "2.0.3"; 14 + pyproject = true; 14 15 15 - disabled = pythonOlder "3.7"; 16 + disabled = pythonOlder "3.10"; 16 17 17 18 src = fetchPypi { 18 19 inherit pname version; 19 - hash = "sha256-MnCLcAoaUxM+a7XMUzMsl3Wwx8lZpflyV5MXH9L0yKU="; 20 + hash = "sha256-VXFNqEM/tIQ855dASXfkOF1ePfnkqgD33emD/YdBD+8="; 20 21 }; 21 22 22 - propagatedBuildInputs = [ six ]; 23 + build-system = [ setuptools ]; 23 24 24 - nativeCheckInputs = [ pytest7CheckHook ]; 25 + dependencies = [ six ]; 26 + 27 + nativeCheckInputs = [ pytestCheckHook ]; 25 28 26 29 pythonImportsCheck = [ "nocaselist" ]; 27 30