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

buildPythonPackage rec {
  pname = "adext";
  version = "0.3";

  src = fetchPypi {
    inherit pname version;
    sha256 = "184qxw6i5ixnhgkjnby4zwn4jg90mxb8xy9vbg80x5w331p4z50f";
  };

  postPatch = ''
    substituteInPlace setup.py \
      --replace "alarmdecoder==1.13.2" "alarmdecoder>=1.13.2"
  '';

  propagatedBuildInputs = [ alarmdecoder ];

  # Tests are not published yet
  doCheck = false;
  pythonImportsCheck = [ "adext" ];

  meta = with lib; {
    description = "Python extension for AlarmDecoder";
    homepage = "https://github.com/ajschmidt8/adext";
    license = with licenses; [ mit ];
    maintainers = with maintainers; [ fab ];
  };
}