python3Packages.trakit: 0.2.2 -> 0.2.5

eljamm 346afb36 41677158

Changed files
+5 -8
pkgs
development
python-modules
trakit
+5 -8
pkgs/development/python-modules/trakit/default.nix
···
buildPythonPackage,
fetchFromGitHub,
pythonOlder,
-
nix-update-script,
# build dependencies
poetry-core,
···
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 ];
···
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 ];
};