Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

python3Packages.trakit: 0.2.2 -> 0.2.5

https://github.com/ratoaq2/trakit/releases/tag/0.2.5

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

+4 -4
+4 -4
pkgs/development/python-modules/trakit/default.nix
··· 20 21 buildPythonPackage rec { 22 pname = "trakit"; 23 - version = "0.2.2"; 24 pyproject = true; 25 26 disabled = pythonOlder "3.9"; ··· 28 src = fetchFromGitHub { 29 owner = "ratoaq2"; 30 repo = "trakit"; 31 - rev = version; 32 - hash = "sha256-VV+pdsQ5WEALYZgu4AmvNce1rCTLSYPZtTMjh+aExsU="; 33 }; 34 35 build-system = [ poetry-core ]; ··· 57 meta = { 58 description = "Guess additional information from track titles"; 59 homepage = "https://github.com/ratoaq2/trakit"; 60 - changelog = "https://github.com/ratoaq2/trakit/releases/tag/${version}"; 61 license = lib.licenses.mit; 62 maintainers = with lib.maintainers; [ eljamm ]; 63 };
··· 20 21 buildPythonPackage rec { 22 pname = "trakit"; 23 + version = "0.2.5"; 24 pyproject = true; 25 26 disabled = pythonOlder "3.9"; ··· 28 src = fetchFromGitHub { 29 owner = "ratoaq2"; 30 repo = "trakit"; 31 + tag = version; 32 + hash = "sha256-x/83yRzvQ81+wS0lJr52KYBMoPvSVDr17ppxG/lSfUg="; 33 }; 34 35 build-system = [ poetry-core ]; ··· 57 meta = { 58 description = "Guess additional information from track titles"; 59 homepage = "https://github.com/ratoaq2/trakit"; 60 + changelog = "https://github.com/ratoaq2/trakit/releases/tag/${src.tag}"; 61 license = lib.licenses.mit; 62 maintainers = with lib.maintainers; [ eljamm ]; 63 };