python3Packages.trakit: 0.2.2 -> 0.2.5

This commit is contained in:
eljamm 2025-07-29 08:54:20 +02:00
parent 4167715826
commit 346afb36b0

View File

@ -3,7 +3,6 @@
buildPythonPackage,
fetchFromGitHub,
pythonOlder,
nix-update-script,
# build dependencies
poetry-core,
@ -20,16 +19,16 @@
buildPythonPackage rec {
pname = "trakit";
version = "0.2.2";
version = "0.2.5";
pyproject = true;
disabled = pythonOlder "3.9";
disabled = pythonOlder "3.11";
src = fetchFromGitHub {
owner = "ratoaq2";
repo = "trakit";
rev = version;
hash = "sha256-VV+pdsQ5WEALYZgu4AmvNce1rCTLSYPZtTMjh+aExsU=";
tag = version;
hash = "sha256-x/83yRzvQ81+wS0lJr52KYBMoPvSVDr17ppxG/lSfUg=";
};
build-system = [ poetry-core ];
@ -52,12 +51,10 @@ buildPythonPackage rec {
pythonImportsCheck = [ "trakit" ];
passthru.updateScript = nix-update-script { };
meta = {
description = "Guess additional information from track titles";
homepage = "https://github.com/ratoaq2/trakit";
changelog = "https://github.com/ratoaq2/trakit/releases/tag/${version}";
changelog = "https://github.com/ratoaq2/trakit/releases/tag/${src.tag}";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ eljamm ];
};