mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-23 14:13:35 +00:00
42 lines
770 B
Nix
42 lines
770 B
Nix
{ lib
|
|
, async-timeout
|
|
, buildPythonPackage
|
|
, colorlog
|
|
, fetchPypi
|
|
, pyserial
|
|
, pythonOlder
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "pyenvisalink";
|
|
version = "4.5";
|
|
format = "setuptools";
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "sha256-WS1DCnuVmFAKsFVOb6HeKoNn2ZWHoLupg2VOZkzVsBU=";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
async-timeout
|
|
colorlog
|
|
pyserial
|
|
];
|
|
|
|
# Tests require an Envisalink device
|
|
doCheck = false;
|
|
|
|
pythonImportsCheck = [
|
|
"pyenvisalink"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Python interface for Envisalink 2DS/3 Alarm API";
|
|
homepage = "https://github.com/Cinntax/pyenvisalink";
|
|
license = with licenses; [ mit ];
|
|
maintainers = with maintainers; [ fab ];
|
|
};
|
|
}
|