about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/pyyardian/default.nix
blob: 0216d562faea70c88b692e49bf0eaeb3008103a6 (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
40
41
42
43
44
45
46
{ lib
, aiohttp
, buildPythonPackage
, fetchFromGitHub
, setuptools
, pythonOlder
, wheel
}:

buildPythonPackage rec {
  pname = "pyyardian";
  version = "1.2.0";
  pyproject = true;

  disabled = pythonOlder "3.7";

  src = fetchFromGitHub {
    owner = "h3l1o5";
    repo = "pyyardian";
    rev = "refs/tags/${version}";
    hash = "sha256-JBb62pFDuVcXIGRc6UOp5/ciUtbGm4XnKZjt1icF/jQ=";
  };

  nativeBuildInputs = [
    setuptools
    wheel
  ];

  propagatedBuildInputs = [
    aiohttp
  ];

  # Tests require network access
  doCheck = false;

  pythonImportsCheck = [
    "pyyardian"
  ];

  meta = with lib; {
    description = "Module for interacting with the Yardian irrigation controller";
    homepage = "https://github.com/h3l1o5/pyyardian";
    license = licenses.mit;
    maintainers = with maintainers; [ fab ];
  };
}