depot/third_party/nixpkgs/pkgs/development/python-modules/pywemo/default.nix
Default email e7ec2969af Project import generated by Copybara.
GitOrigin-RevId: 9b19f5e77dd906cb52dade0b7bd280339d2a1f3d
2024-01-13 09:15:51 +01:00

59 lines
1 KiB
Nix

{ lib
, buildPythonPackage
, fetchFromGitHub
, hypothesis
, ifaddr
, lxml
, poetry-core
, pytest-vcr
, pytestCheckHook
, pythonOlder
, requests
, urllib3
}:
buildPythonPackage rec {
pname = "pywemo";
version = "1.4.0";
pyproject = true;
disabled = pythonOlder "3.8";
src = fetchFromGitHub {
owner = "pywemo";
repo = "pywemo";
rev = "refs/tags/${version}";
hash = "sha256-XpCRrCJYHv1so5/aHoGrtkgp3RX1NUKPUawJqK/FaG0=";
};
nativeBuildInputs = [
poetry-core
];
propagatedBuildInputs = [
ifaddr
lxml
requests
urllib3
];
__darwinAllowLocalNetworking = true;
nativeCheckInputs = [
hypothesis
pytest-vcr
pytestCheckHook
];
pythonImportsCheck = [
"pywemo"
];
meta = with lib; {
description = "Python module to discover and control WeMo devices";
homepage = "https://github.com/pywemo/pywemo";
changelog = "https://github.com/pywemo/pywemo/releases/tag/${version}";
license = with licenses; [ mit ];
maintainers = with maintainers; [ fab ];
};
}