fa5436e0a7
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
43 lines
973 B
Nix
43 lines
973 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
pythonOlder,
|
|
requests,
|
|
websocket-client,
|
|
xmltodict,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "pyskyqremote";
|
|
version = "0.3.26";
|
|
format = "setuptools";
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "RogerSelwyn";
|
|
repo = "skyq_remote";
|
|
rev = "refs/tags/${version}";
|
|
hash = "sha256-aMgUwgKHgR+NQvRxiUV7GaXehjDIlJJJHwSmHDmzK08=";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
requests
|
|
websocket-client
|
|
xmltodict
|
|
];
|
|
|
|
# Project has no tests, only a test script which looks like anusage example
|
|
doCheck = false;
|
|
|
|
pythonImportsCheck = [ "pyskyqremote" ];
|
|
|
|
meta = with lib; {
|
|
description = "Python module for accessing SkyQ boxes";
|
|
homepage = "https://github.com/RogerSelwyn/skyq_remote";
|
|
changelog = "https://github.com/RogerSelwyn/skyq_remote/releases/tag/${version}";
|
|
license = with licenses; [ mit ];
|
|
maintainers = with maintainers; [ fab ];
|
|
};
|
|
}
|