python310Packages.async-modbus: init at 0.2.0
This commit is contained in:
parent
3e93dfa004
commit
14eadb17df
57
pkgs/development/python-modules/async-modbus/default.nix
Normal file
57
pkgs/development/python-modules/async-modbus/default.nix
Normal file
@ -0,0 +1,57 @@
|
||||
{ lib
|
||||
, buildPythonPackage
|
||||
, connio
|
||||
, fetchFromGitHub
|
||||
, pytest-asyncio
|
||||
, pytestCheckHook
|
||||
, pythonOlder
|
||||
, setuptools
|
||||
, umodbus
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "async-modbus";
|
||||
version = "0.2.0";
|
||||
format = "pyproject";
|
||||
|
||||
disabled = pythonOlder "3.7";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "tiagocoutinho";
|
||||
repo = "async_modbus";
|
||||
rev = "refs/tags/v${version}";
|
||||
hash = "sha256-TB+ndUvLZ9G3XXEBpLb4ULHlYZC2CoqGnL2BjMQrhRg=";
|
||||
};
|
||||
|
||||
postPatch = ''
|
||||
substituteInPlace pyproject.toml \
|
||||
--replace '"--cov=async_modbus",' "" \
|
||||
--replace '"--cov-report=html", "--cov-report=term",' "" \
|
||||
--replace '"--durations=2", "--verbose"' ""
|
||||
'';
|
||||
|
||||
nativeBuildInputs = [
|
||||
setuptools
|
||||
];
|
||||
|
||||
propagatedBuildInputs = [
|
||||
connio
|
||||
umodbus
|
||||
];
|
||||
|
||||
checkInputs = [
|
||||
pytest-asyncio
|
||||
pytestCheckHook
|
||||
];
|
||||
|
||||
pythonImportsCheck = [
|
||||
"async_modbus"
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Library for Modbus communication";
|
||||
homepage = "https://github.com/tiagocoutinho/async_modbus";
|
||||
license = with licenses; [ gpl3Plus ];
|
||||
maintainers = with maintainers; [ fab ];
|
||||
};
|
||||
}
|
@ -666,6 +666,8 @@ self: super: with self; {
|
||||
|
||||
async-lru = callPackage ../development/python-modules/async-lru { };
|
||||
|
||||
async-modbus = callPackage ../development/python-modules/async-modbus { };
|
||||
|
||||
asyncclick = callPackage ../development/python-modules/asyncclick { };
|
||||
|
||||
asynccmd = callPackage ../development/python-modules/asynccmd { };
|
||||
|
Loading…
Reference in New Issue
Block a user