stripe-cli: 1.23.3 -> 1.23.5 (#375724)
[NixPkgs.git] / pkgs / development / python-modules / py-opensonic / default.nix
blobea7fe3d2371263c98273e99af48111a2271bb616
2   lib,
3   buildPythonPackage,
4   fetchFromGitHub,
5   setuptools,
6   requests,
7 }:
9 buildPythonPackage rec {
10   pname = "py-opensonic";
11   version = "5.2.1";
12   pyproject = true;
14   src = fetchFromGitHub {
15     owner = "khers";
16     repo = "py-opensonic";
17     tag = "v${version}";
18     hash = "sha256-lVErs5f2LoCrMNr+f8Bm2Q6xQRNuisloqyRHchYTukk=";
19   };
21   build-system = [ setuptools ];
23   dependencies = [ requests ];
25   doCheck = false; # no tests
27   pythonImportsCheck = [
28     "libopensonic"
29   ];
31   meta = with lib; {
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 ];
37   };