python3Packages.lb-matching-tools: init at 2024.01.30.1

This commit is contained in:
June Stepp
2025-11-17 18:05:36 -06:00
parent 89c2b2330e
commit e9d565b25c
2 changed files with 43 additions and 0 deletions
@@ -0,0 +1,41 @@
{
lib,
buildPythonPackage,
fetchFromGitHub,
setuptools,
setuptools-scm,
regex,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "lb-matching-tools";
version = "2024.01.30.1";
pyproject = true;
src = fetchFromGitHub {
owner = "metabrainz";
repo = "listenbrainz-matching-tools";
tag = "v${version}";
hash = "sha256-RQ4X6DKigQsNxaAWXB1meATKP+ddMUgkoAIyX8iIisU=";
};
build-system = [
setuptools
setuptools-scm
];
dependencies = [ regex ];
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "lb_matching_tools" ];
meta = {
description = "ListenBrainz tools for matching metadata to and from MusicBrainz";
homepage = "https://github.com/metabrainz/listenbrainz-matching-tools";
changelog = "https://github.com/metabrainz/listenbrainz-matching-tools/releases/tag/${src.tag}";
license = lib.licenses.gpl2Plus;
teams = [ lib.teams.ngi ];
};
}
+2
View File
@@ -8186,6 +8186,8 @@ self: super: with self; {
lazy-object-proxy = callPackage ../development/python-modules/lazy-object-proxy { };
lb-matching-tools = callPackage ../development/python-modules/lb-matching-tools { };
lc7001 = callPackage ../development/python-modules/lc7001 { };
lcd-i2c = callPackage ../development/python-modules/lcd-i2c { };