nixpkgs/pkgs/development/python-modules/py-opensonic/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

38 lines
814 B
Nix
Raw Normal View History

{ lib
, buildPythonPackage
, fetchFromGitHub
, setuptools
, requests
}:
buildPythonPackage rec {
pname = "py-opensonic";
version = "5.2.1";
pyproject = true;
src = fetchFromGitHub {
owner = "khers";
repo = "py-opensonic";
rev = "refs/tags/v${version}";
hash = "sha256-lVErs5f2LoCrMNr+f8Bm2Q6xQRNuisloqyRHchYTukk=";
};
build-system = [ setuptools ];
dependencies = [ requests ];
doCheck = false; # no tests
pythonImportsCheck = [
"libopensonic"
];
meta = with lib; {
description = "Python library to wrap the Open Subsonic REST API";
homepage = "https://github.com/khers/py-opensonic";
changelog = "https://github.com/khers/py-opensonic/blob/${src.rev}/CHANGELOG.md";
license = licenses.gpl3Only;
maintainers = with maintainers; [ hexa ];
};
}