python313Packages.dotwiz: modernize (#437879)

authored by Fabian Affolter and committed by GitHub 4ba5ea3a cd129a86

+7 -7
+7 -7
pkgs/development/python-modules/dotwiz/default.nix
··· 5 pyheck, 6 pytestCheckHook, 7 pythonOlder, 8 }: 9 10 buildPythonPackage rec { 11 pname = "dotwiz"; 12 version = "0.4.0"; 13 - format = "setuptools"; 14 15 disabled = pythonOlder "3.7"; 16 ··· 21 hash = "sha256-ABmkwpJ40JceNJieW5bhg0gqWNrR6Wxj84nLCjKU11A="; 22 }; 23 24 - propagatedBuildInputs = [ pyheck ]; 25 26 nativeCheckInputs = [ pytestCheckHook ]; 27 28 pythonImportsCheck = [ "dotwiz" ]; 29 30 - disabledTestPaths = [ 31 - "benchmarks" 32 - "integration*" 33 - ]; 34 35 meta = with lib; { 36 description = "Dict subclass that supports dot access notation"; 37 homepage = "https://github.com/rnag/dotwiz"; 38 - changelog = "https://github.com/rnag/dotwiz/blob/v${version}/HISTORY.rst"; 39 license = licenses.mit; 40 maintainers = with maintainers; [ fab ]; 41 };
··· 5 pyheck, 6 pytestCheckHook, 7 pythonOlder, 8 + setuptools, 9 }: 10 11 buildPythonPackage rec { 12 pname = "dotwiz"; 13 version = "0.4.0"; 14 + pyproject = true; 15 16 disabled = pythonOlder "3.7"; 17 ··· 22 hash = "sha256-ABmkwpJ40JceNJieW5bhg0gqWNrR6Wxj84nLCjKU11A="; 23 }; 24 25 + build-system = [ setuptools ]; 26 + 27 + dependencies = [ pyheck ]; 28 29 nativeCheckInputs = [ pytestCheckHook ]; 30 31 pythonImportsCheck = [ "dotwiz" ]; 32 33 + disabledTestPaths = [ "benchmarks" ]; 34 35 meta = with lib; { 36 description = "Dict subclass that supports dot access notation"; 37 homepage = "https://github.com/rnag/dotwiz"; 38 + changelog = "https://github.com/rnag/dotwiz/blob/v${src.tag}/HISTORY.rst"; 39 license = licenses.mit; 40 maintainers = with maintainers; [ fab ]; 41 };