anki-bin: 24.06.3 -> 24.11 (#360722)
[NixPkgs.git] / pkgs / development / python-modules / pywilight / default.nix
blob1c8d28858c75ff676fe63f14ee77f24739a0358c
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5   ifaddr,
6   requests,
7   pythonOlder,
8 }:
10 buildPythonPackage rec {
11   pname = "pywilight";
12   version = "0.0.74";
13   format = "setuptools";
15   disabled = pythonOlder "3.7";
17   src = fetchPypi {
18     inherit pname version;
19     hash = "sha256-patCdQ7qLEfy+RpH9T/Fa8ubI7QF6OmLzFUokZc5syQ=";
20   };
22   propagatedBuildInputs = [
23     ifaddr
24     requests
25   ];
27   # Module has no tests
28   doCheck = false;
30   pythonImportsCheck = [ "pywilight" ];
32   meta = with lib; {
33     description = "Python API for WiLight device";
34     homepage = "https://github.com/leofig-rj/pywilight";
35     license = with licenses; [ mit ];
36     maintainers = with maintainers; [ fab ];
37   };