depot/third_party/nixpkgs/pkgs/development/python-modules/python-songpal/default.nix
Default email fa5436e0a7 Project import generated by Copybara.
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
2024-06-05 17:53:02 +02:00

49 lines
1 KiB
Nix

{
lib,
buildPythonPackage,
pythonOlder,
fetchFromGitHub,
poetry-core,
aiohttp,
async-upnp-client,
attrs,
click,
}:
buildPythonPackage rec {
pname = "python-songpal";
version = "0.16.2";
pyproject = true;
disabled = pythonOlder "3.8";
src = fetchFromGitHub {
owner = "rytilahti";
repo = "python-songpal";
rev = "refs/tags/release/${version}";
hash = "sha256-PYw6xlUtBrxl+YeVO/2Njt5LYWEprzGPVNk1Mlr83HM=";
};
build-system = [ poetry-core ];
dependencies = [
aiohttp
async-upnp-client
attrs
click
];
# no tests implemented
doCheck = false;
pythonImportsCheck = [ "songpal" ];
meta = with lib; {
description = "Python library for interfacing with Sony's Songpal devices";
mainProgram = "songpal";
homepage = "https://github.com/rytilahti/python-songpal";
changelog = "https://github.com/rytilahti/python-songpal/blob/release/${version}/CHANGELOG.md";
license = licenses.gpl3Only;
maintainers = with maintainers; [ dotlambda ];
};
}