biome: 1.9.2 -> 1.9.3 (#349335)
[NixPkgs.git] / pkgs / development / python-modules / pysaj / default.nix
blob499cb552b36e0f5962e9da8e8bb53d13c3034d6f
2   lib,
3   aiohttp,
4   buildPythonPackage,
5   fetchFromGitHub,
6   lxml,
7   pythonOlder,
8 }:
10 buildPythonPackage rec {
11   pname = "pysaj";
12   version = "0.0.16";
13   format = "setuptools";
15   disabled = pythonOlder "3.7";
17   src = fetchFromGitHub {
18     owner = "fredericvl";
19     repo = pname;
20     rev = "v${version}";
21     hash = "sha256-7mN6GPRbXfEUfCrCrCs71SSt4x2Ch2y3a5rfXnuwVA0=";
22   };
24   propagatedBuildInputs = [
25     aiohttp
26     lxml
27   ];
29   # Module has no tests
30   doCheck = false;
32   pythonImportsCheck = [ "pysaj" ];
34   meta = with lib; {
35     description = "Library to communicate with SAJ inverters";
36     homepage = "https://github.com/fredericvl/pysaj";
37     license = with licenses; [ asl20 ];
38     maintainers = with maintainers; [ fab ];
39   };