lol
fork

Configure Feed

Select the types of activity you want to include in your feed.

python3Packages.awesomeversion: 24.6.0 -> 25.8.0

https://github.com/ludeeus/awesomeversion/releases/tag/25.8.0

This commit was automatically generated using update-python-libraries.

+7 -5
+7 -5
pkgs/development/python-modules/awesomeversion/default.nix
··· 3 3 buildPythonPackage, 4 4 fetchFromGitHub, 5 5 pythonOlder, 6 - poetry-core, 6 + hatchling, 7 + pytest-codspeed, 7 8 pytest-snapshot, 8 9 pytestCheckHook, 9 10 }: 10 11 11 12 buildPythonPackage rec { 12 13 pname = "awesomeversion"; 13 - version = "24.6.0"; 14 + version = "25.8.0"; 14 15 pyproject = true; 15 16 16 17 disabled = pythonOlder "3.8"; ··· 19 20 owner = "ludeeus"; 20 21 repo = "awesomeversion"; 21 22 tag = version; 22 - hash = "sha256-lpG42Be0MVinWX5MyDvBPdoZFx66l6tpUxpAJRqEf88="; 23 + hash = "sha256-2CEuJagUkYwtjzpQLYLlz+V5e2feEU6di3wI0+uWuy4="; 23 24 }; 24 25 25 26 postPatch = '' ··· 28 29 --replace-fail 'version = "0"' 'version = "${version}"' 29 30 ''; 30 31 31 - nativeBuildInputs = [ poetry-core ]; 32 + nativeBuildInputs = [ hatchling ]; 32 33 33 34 pythonImportsCheck = [ "awesomeversion" ]; 34 35 35 36 nativeCheckInputs = [ 37 + pytest-codspeed 36 38 pytest-snapshot 37 39 pytestCheckHook 38 40 ]; ··· 40 42 meta = with lib; { 41 43 description = "Python module to deal with versions"; 42 44 homepage = "https://github.com/ludeeus/awesomeversion"; 43 - changelog = "https://github.com/ludeeus/awesomeversion/releases/tag/${version}"; 45 + changelog = "https://github.com/ludeeus/awesomeversion/releases/tag/${src.tag}"; 44 46 license = with licenses; [ mit ]; 45 47 maintainers = with maintainers; [ fab ]; 46 48 };