mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 08:23:09 +00:00
65 lines
1.1 KiB
Nix
65 lines
1.1 KiB
Nix
{
|
|
lib,
|
|
awesomeversion,
|
|
buildPythonPackage,
|
|
click,
|
|
crcmod,
|
|
fetchFromGitHub,
|
|
getmac,
|
|
intelhex,
|
|
paho-mqtt,
|
|
pyserial,
|
|
pyserial-asyncio,
|
|
pytest-sugar,
|
|
pytest-timeout,
|
|
pytestCheckHook,
|
|
pythonOlder,
|
|
voluptuous,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "pymysensors";
|
|
version = "0.24.1";
|
|
format = "setuptools";
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "theolind";
|
|
repo = pname;
|
|
rev = version;
|
|
hash = "sha256-3t9YrSJf02kc5CuTqPBc/qNJV7yy7Vke4WqhtuOaAYo=";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
awesomeversion
|
|
click
|
|
crcmod
|
|
getmac
|
|
intelhex
|
|
pyserial
|
|
pyserial-asyncio
|
|
voluptuous
|
|
];
|
|
|
|
optional-dependencies = {
|
|
mqtt-client = [ paho-mqtt ];
|
|
};
|
|
|
|
nativeCheckInputs = [
|
|
pytest-sugar
|
|
pytest-timeout
|
|
pytestCheckHook
|
|
];
|
|
|
|
pythonImportsCheck = [ "mysensors" ];
|
|
|
|
meta = with lib; {
|
|
description = "Python API for talking to a MySensors gateway";
|
|
mainProgram = "pymysensors";
|
|
homepage = "https://github.com/theolind/pymysensors";
|
|
license = with licenses; [ mit ];
|
|
maintainers = with maintainers; [ fab ];
|
|
};
|
|
}
|