2c76a4cb41
GitOrigin-RevId: c757e9bd77b16ca2e03c89bf8bc9ecb28e0c06ad
35 lines
783 B
Nix
35 lines
783 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
, pythonOlder
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "pydevccu";
|
|
version = "0.1.7";
|
|
format = "setuptools";
|
|
|
|
disabled = pythonOlder "3.8";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "danielperna84";
|
|
repo = pname;
|
|
rev = "refs/tags/${version}";
|
|
hash = "sha256-wzltcerAGh/QfHGg+M7Hlw4SfDEg23K2plSyrmz/m7E=";
|
|
};
|
|
|
|
# Module has no tests
|
|
doCheck = false;
|
|
|
|
pythonImportsCheck = [
|
|
"pydevccu"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "HomeMatic CCU XML-RPC Server with fake devices";
|
|
homepage = "https://github.com/danielperna84/pydevccu";
|
|
changelog = "https://github.com/danielperna84/pydevccu/releases/tag/${version}";
|
|
license = with licenses; [ mit ];
|
|
maintainers = with maintainers; [ fab ];
|
|
};
|
|
}
|