about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/iotawattpy/default.nix
blob: 7eca486eea0b875d847eb5e2e74fc9da4dd542ca (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
{ lib
, buildPythonPackage
, fetchPypi
, httpx
, pythonOlder
}:

buildPythonPackage rec {
  pname = "iotawattpy";
  version = "0.1.0";
  format = "setuptools";

  disabled = pythonOlder "3.8";

  src = fetchPypi {
    inherit pname version;
    sha256 = "1pyxm87lvd6zy0rx7r9jivk2li267r3xr0b9p6vf0v0vp9fmgsw3";
  };

  propagatedBuildInputs = [
    httpx
  ];

  # Project doesn't tag releases or ship the tests with PyPI
  # https://github.com/gtdiehl/iotawattpy/issues/14
  doCheck = false;

  pythonImportsCheck = [ "iotawattpy" ];

  meta = with lib; {
    description = "Python interface for the IoTaWatt device";
    homepage = "https://github.com/gtdiehl/iotawattpy";
    license = licenses.gpl3Plus;
    maintainers = with maintainers; [ fab ];
  };
}