biome: 1.9.2 -> 1.9.3 (#349335)
[NixPkgs.git] / pkgs / development / python-modules / umodbus / default.nix
blobd45aebe8d06282a4ce78d25c0dd164bc85cd60b5
2   lib,
3   buildPythonPackage,
4   fetchFromGitHub,
5   pyserial,
6   pytestCheckHook,
7   pythonOlder,
8 }:
10 buildPythonPackage rec {
11   pname = "umodbus";
12   version = "1.0.4";
13   format = "setuptools";
15   disabled = pythonOlder "3.7";
17   src = fetchFromGitHub {
18     owner = "AdvancedClimateSystems";
19     repo = "uModbus";
20     rev = "refs/tags/${version}";
21     hash = "sha256-5IXadb5mjrMwr+L9S1iMN5kba5VGrzYt1p8nBvvLCh4=";
22   };
24   propagatedBuildInputs = [ pyserial ];
26   __darwinAllowLocalNetworking = true;
28   nativeCheckInputs = [ pytestCheckHook ];
30   pythonImportsCheck = [ "umodbus" ];
32   meta = with lib; {
33     description = "Implementation of the Modbus protocol";
34     homepage = "https://github.com/AdvancedClimateSystems/uModbus/";
35     license = with licenses; [ mpl20 ];
36     maintainers = with maintainers; [ fab ];
37   };