python3Packages.spotipyfree: init at 1.5.0

This commit is contained in:
Robert Schütz
2026-05-18 09:37:00 -07:00
parent 9ffdbb9971
commit 530df7f631
2 changed files with 41 additions and 0 deletions
@@ -0,0 +1,39 @@
{
buildPythonPackage,
fetchPypi,
lib,
pymongo,
setuptools,
spotapi,
}:
buildPythonPackage (finalAttrs: {
pname = "spotipyfree";
version = "1.5.0";
pyproject = true;
# no tags on GitHub
src = fetchPypi {
inherit (finalAttrs) pname version;
hash = "sha256-MwqdvhpMWjGlH8mB2yGUWPghNLllUcbZ6jZjpftpYRk=";
};
build-system = [ setuptools ];
dependencies = [
pymongo
spotapi
];
pythonImportsCheck = [ "SpotipyFree" ];
# upstream has no tests
doCheck = false;
meta = {
description = "Spotipy-compatible wrapper using SpotAPI";
homepage = "https://github.com/TzurSoffer/spotipyFree";
license = lib.licenses.mit;
maintainers = [ lib.maintainers.dotlambda ];
};
})
+2
View File
@@ -18569,6 +18569,8 @@ self: super: with self; {
spotipy = callPackage ../development/python-modules/spotipy { };
spotipyfree = callPackage ../development/python-modules/spotipyfree { };
spsdk = callPackage ../development/python-modules/spsdk { };
spsdk-mcu-link = callPackage ../development/python-modules/spsdk-mcu-link { };