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