silx: 2.1.1 -> 2.1.2 (#361612)
[NixPkgs.git] / pkgs / development / python-modules / pyvesync / default.nix
blobd8f370167ba2ea02764086aa34ee43cc3445837e
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5   requests,
6   pythonOlder,
7 }:
9 buildPythonPackage rec {
10   pname = "pyvesync";
11   version = "2.1.12";
12   format = "setuptools";
14   disabled = pythonOlder "3.6";
16   src = fetchPypi {
17     inherit pname version;
18     hash = "sha256-k9eAbHFFo5rFYTNVxN4qEFnW2zmXThr3Ki1lZtj9V/g=";
19   };
21   propagatedBuildInputs = [ requests ];
23   # Test are not available (not in PyPI tarball and there are no GitHub releases)
24   doCheck = false;
26   pythonImportsCheck = [ "pyvesync" ];
28   meta = with lib; {
29     description = "Python library to manage Etekcity Devices and Levoit Air Purifier";
30     homepage = "https://github.com/webdjoe/pyvesync";
31     changelog = "https://github.com/webdjoe/pyvesync/releases/tag/${version}";
32     license = with licenses; [ mit ];
33     maintainers = with maintainers; [ fab ];
34   };