python3Packages.lb-matching-tools: init at 2024.01.30.1
This commit is contained in:
@@ -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 ];
|
||||
};
|
||||
}
|
||||
@@ -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 { };
|
||||
|
||||
Reference in New Issue
Block a user