biome: 1.9.2 -> 1.9.3 (#349335)
[NixPkgs.git] / pkgs / development / python-modules / pyrympro / default.nix
blob70ed0c42a0e6308b40493b5dcac645157f58711e
2   lib,
3   aiohttp,
4   buildPythonPackage,
5   fetchFromGitHub,
6   setuptools,
7   pythonOlder,
8 }:
10 buildPythonPackage rec {
11   pname = "pyrympro";
12   version = "0.0.8";
13   pyproject = true;
15   disabled = pythonOlder "3.10";
17   src = fetchFromGitHub {
18     owner = "OnFreund";
19     repo = "pyrympro";
20     rev = "refs/tags/v${version}";
21     hash = "sha256-mRvKLPgtBgmFDTHqra7GslxsgsJpQ2w/DE0Zgz5jujk=";
22   };
24   build-system = [ setuptools ];
26   dependencies = [ aiohttp ];
28   # Module has no tests
29   doCheck = false;
31   pythonImportsCheck = [ "pyrympro" ];
33   meta = with lib; {
34     description = "Module to interact with Read Your Meter Pro";
35     homepage = "https://github.com/OnFreund/pyrympro";
36     license = licenses.mit;
37     maintainers = with maintainers; [ fab ];
38   };