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

53 lines
945 B
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
isPy3k,
xmltodict,
ifaddr,
requests,
# Test dependencies
pytestCheckHook,
mock,
requests-mock,
}:
buildPythonPackage rec {
pname = "pysonos";
version = "0.0.54";
format = "setuptools";
disabled = !isPy3k;
# pypi package is missing test fixtures
src = fetchFromGitHub {
owner = "amelchio";
repo = pname;
rev = "v${version}";
hash = "sha256-gBOknYHL5nQWFVhCbLN0Ah+1fovcNY4P2myryZnUadk=";
};
propagatedBuildInputs = [
ifaddr
requests
xmltodict
];
nativeCheckInputs = [
pytestCheckHook
mock
requests-mock
];
disabledTests = [
"test_desc_from_uri" # test requires network access
];
meta = with lib; {
description = "A SoCo fork with fixes for Home Assistant";
homepage = "https://github.com/amelchio/pysonos";
license = licenses.mit;
maintainers = with maintainers; [ juaningan ];
};
}