8 buildPythonPackage rec {
9 pname = "py-opensonic";
13 src = fetchFromGitHub {
15 repo = "py-opensonic";
16 rev = "refs/tags/v${version}";
17 hash = "sha256-lVErs5f2LoCrMNr+f8Bm2Q6xQRNuisloqyRHchYTukk=";
20 build-system = [ setuptools ];
22 dependencies = [ requests ];
24 doCheck = false; # no tests
26 pythonImportsCheck = [
31 description = "Python library to wrap the Open Subsonic REST API";
32 homepage = "https://github.com/khers/py-opensonic";
33 changelog = "https://github.com/khers/py-opensonic/blob/${src.rev}/CHANGELOG.md";
34 license = licenses.gpl3Only;
35 maintainers = with maintainers; [ hexa ];