lol

python311Packages.pytoolconfig: 1.2.5 -> 1.2.6

Diff: https://github.com/bagel897/pytoolconfig/compare/refs/tags/v1.2.5...v1.2.6

Changelog: https://github.com/bagel897/pytoolconfig/releases/tag/v1.2.6

+13 -23
+13 -23
pkgs/development/python-modules/pytoolconfig/default.nix
··· 1 1 { lib 2 2 , buildPythonPackage 3 - , fetchFromGitHub 4 - , pythonOlder 5 - 6 - # build 7 - , pdm-pep517 8 - 9 - # docs 10 3 , docutils 11 - , sphinxHook 12 - , sphinx-rtd-theme 13 - , sphinx-autodoc-typehints 14 - 15 - # runtime 16 - , tomli 4 + , fetchFromGitHub 17 5 , packaging 18 - 19 - # optionals 20 - , pydantic 6 + , pdm-backend 21 7 , platformdirs 8 + , pydantic 9 + , pytestCheckHook 10 + , pythonOlder 22 11 , sphinx 12 + , sphinx-autodoc-typehints 13 + , sphinx-rtd-theme 14 + , sphinxHook 23 15 , tabulate 24 - 25 - # tests 26 - , pytestCheckHook 16 + , tomli 27 17 }: 28 18 29 19 buildPythonPackage rec { 30 20 pname = "pytoolconfig"; 31 - version = "1.2.5"; 21 + version = "1.2.6"; 32 22 format = "pyproject"; 33 23 34 24 disabled = pythonOlder "3.8"; ··· 37 27 owner = "bagel897"; 38 28 repo = "pytoolconfig"; 39 29 rev = "refs/tags/v${version}"; 40 - hash = "sha256-b7er/IgXr2j9dSnI87669BXWA5CXNTzwa1DTpl8PBZ4="; 30 + hash = "sha256-KmmaxFJbvdOGG9T9iiHKnJpFzZiLVkPJki+qHPxPTdY="; 41 31 }; 42 32 43 33 outputs = [ ··· 48 38 PDM_PEP517_SCM_VERSION = version; 49 39 50 40 nativeBuildInputs = [ 51 - pdm-pep517 41 + pdm-backend 52 42 53 43 # docs 54 44 docutils ··· 90 80 ] ++ lib.flatten (builtins.attrValues passthru.optional-dependencies); 91 81 92 82 meta = with lib; { 93 - changelog = "https://github.com/bagel897/pytoolconfig/releases/tag/v${version}"; 94 83 description = "Python tool configuration"; 95 84 homepage = "https://github.com/bagel897/pytoolconfig"; 85 + changelog = "https://github.com/bagel897/pytoolconfig/releases/tag/v${version}"; 96 86 license = licenses.lgpl3Plus; 97 87 maintainers = with maintainers; [ fab hexa ]; 98 88 };