9 buildPythonPackage rec {
10 pname = "py-opensonic";
14 src = fetchFromGitHub {
16 repo = "py-opensonic";
18 hash = "sha256-lVErs5f2LoCrMNr+f8Bm2Q6xQRNuisloqyRHchYTukk=";
21 build-system = [ setuptools ];
23 dependencies = [ requests ];
25 doCheck = false; # no tests
27 pythonImportsCheck = [
32 description = "Python library to wrap the Open Subsonic REST API";
33 homepage = "https://github.com/khers/py-opensonic";
34 changelog = "https://github.com/khers/py-opensonic/blob/${src.rev}/CHANGELOG.md";
35 license = licenses.gpl3Only;
36 maintainers = with maintainers; [ hexa ];