depot/third_party/nixpkgs/pkgs/development/python-modules/python-songpal/default.nix
Default email 8e65f7f0cc Project import generated by Copybara.
GitOrigin-RevId: 062a0c5437b68f950b081bbfc8a699d57a4ee026
2022-03-05 17:20:37 +01:00

51 lines
944 B
Nix

{ lib
, buildPythonPackage
, pythonOlder
, fetchFromGitHub
, poetry-core
, aiohttp
, async-upnp-client
, attrs
, click
, importlib-metadata
}:
buildPythonPackage rec {
pname = "python-songpal";
version = "0.14.1";
format = "pyproject";
disabled = pythonOlder "3.6";
src = fetchFromGitHub {
owner = "rytilahti";
repo = "python-songpal";
rev = version;
hash = "sha256-lLRAXoz95hSt1JcWbQ1g5xmvDOeUmeXPa9pCuJktaeY=";
};
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 ];
};
}