depot/third_party/nixpkgs/pkgs/development/python-modules/pysonos/default.nix
Default email 841d9c7fc1 Project import generated by Copybara.
GitOrigin-RevId: 3a8d7958a610cd3fec3a6f424480f91a1b259185
2021-06-29 00:13:55 +01:00

51 lines
904 B
Nix

{ lib
, buildPythonPackage
, fetchFromGitHub
, isPy3k
, xmltodict
, ifaddr
, requests
# Test dependencies
, pytestCheckHook
, mock
, requests-mock
}:
buildPythonPackage rec {
pname = "pysonos";
version = "0.0.51";
disabled = !isPy3k;
# pypi package is missing test fixtures
src = fetchFromGitHub {
owner = "amelchio";
repo = pname;
rev = "v${version}";
sha256 = "sha256-MjsbqrH4SWnnwGe9BVHaValoQEiaaZVhFdn6MDoEyZs=";
};
propagatedBuildInputs = [
ifaddr
requests
xmltodict
];
checkInputs = [
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 ];
};
}