biome: 1.9.2 -> 1.9.3 (#349335)
[NixPkgs.git] / pkgs / development / python-modules / aranet4 / default.nix
blob0d9e848c147513982f103c1a5068954939bb686b
2   lib,
3   bleak,
4   buildPythonPackage,
5   fetchFromGitHub,
6   pytestCheckHook,
7   pythonOlder,
8   requests,
9   setuptools,
12 buildPythonPackage rec {
13   pname = "aranet4";
14   version = "2.4.0";
15   pyproject = true;
17   disabled = pythonOlder "3.7";
19   src = fetchFromGitHub {
20     owner = "Anrijs";
21     repo = "Aranet4-Python";
22     rev = "refs/tags/v${version}";
23     hash = "sha256-PdEOEVHri9bhsRFtSqZIaTJ7perD6nZcYoF2sDrWXqg=";
24   };
26   build-system = [ setuptools ];
28   dependencies = [
29     bleak
30     requests
31   ];
33   nativeCheckInputs = [ pytestCheckHook ];
35   pythonImportsCheck = [ "aranet4" ];
37   disabledTests = [
38     # Test compares rendered output
39     "test_current_values"
40   ];
42   meta = with lib; {
43     description = "Module to interact with Aranet4 devices";
44     homepage = "https://github.com/Anrijs/Aranet4-Python";
45     license = with licenses; [ mit ];
46     maintainers = with maintainers; [ fab ];
47     mainProgram = "aranetctl";
48   };