about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/pyecowitt/default.nix
blob: b5f4a5fadbacf7a08859e8da78daa9c9f6677e6b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
{ lib
, aiohttp
, buildPythonPackage
, fetchFromGitHub
, pythonOlder
}:

buildPythonPackage rec {
  pname = "pyecowitt";
  version = "0.21";
  format = "setuptools";

  disabled = pythonOlder "3.8";

  src = fetchFromGitHub {
    owner = "garbled1";
    repo = pname;
    rev = version;
    sha256 = "5VdVo6j2HZXSCWU4NvfWzyS/KJfVb7N1KSMeu8TvWaQ=";
  };

  propagatedBuildInputs = [
    aiohttp
  ];

  # Project thas no tests
  doCheck = false;

  pythonImportsCheck = [
    "pyecowitt"
  ];

  meta = with lib; {
    description = "Python module for the EcoWitt Protocol";
    homepage = "https://github.com/garbled1/pyecowitt";
    license = with licenses; [ asl20 ];
    maintainers = with maintainers; [ fab ];
  };
}