fa5436e0a7
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
52 lines
932 B
Nix
52 lines
932 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
beautifulsoup4,
|
|
enum-compat,
|
|
pyserial,
|
|
pynose,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "enocean";
|
|
version = "0.60.1";
|
|
format = "setuptools";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "kipe";
|
|
repo = "enocean";
|
|
rev = version;
|
|
sha256 = "0cbcvvy3qaqv8925z608qmkc1l914crzw79krwrz2vpm2fyribab";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
beautifulsoup4
|
|
enum-compat
|
|
pyserial
|
|
];
|
|
|
|
nativeCheckInputs = [ pynose ];
|
|
|
|
checkPhase = ''
|
|
runHook preCheck
|
|
|
|
nosetests
|
|
|
|
runHook postCheck
|
|
'';
|
|
|
|
pythonImportsCheck = [
|
|
"enocean.communicators"
|
|
"enocean.protocol.packet"
|
|
"enocean.utils"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "EnOcean serial protocol implementation";
|
|
mainProgram = "enocean_example.py";
|
|
homepage = "https://github.com/kipe/enocean";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ dotlambda ];
|
|
};
|
|
}
|