forked from mirrors/nixpkgs
52 lines
957 B
Nix
52 lines
957 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, pythonOlder
|
|
, fetchFromGitHub
|
|
, poetry-core
|
|
, aiohttp
|
|
, async-upnp-client
|
|
, attrs
|
|
, click
|
|
, importlib-metadata
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "python-songpal";
|
|
version = "0.15";
|
|
|
|
format = "pyproject";
|
|
|
|
disabled = pythonOlder "3.6";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "rytilahti";
|
|
repo = "python-songpal";
|
|
rev = "refs/tags/${version}";
|
|
hash = "sha256-NoO3cgviFbXosEnx46nXdW02jYOfRPHUdc1VeCvwBsQ=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
poetry-core
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
aiohttp
|
|
async-upnp-client
|
|
attrs
|
|
click
|
|
importlib-metadata
|
|
];
|
|
|
|
# no tests implemented
|
|
doCheck = false;
|
|
|
|
pythonImportsCheck = [ "songpal" ];
|
|
|
|
meta = with lib; {
|
|
description = "Python library for interfacing with Sony's Songpal devices";
|
|
homepage = "https://github.com/rytilahti/python-songpal";
|
|
license = licenses.gpl3Only;
|
|
maintainers = with maintainers; [ dotlambda ];
|
|
};
|
|
}
|