python3Packages.pyvesync: 1.4.1 -> 1.4.2

main
Fabian Affolter 3 years ago
parent b56d7a70a7
commit 4afcb8d1e8
  1. 15
      pkgs/development/python-modules/pyvesync/default.nix

@ -7,19 +7,26 @@
buildPythonPackage rec {
pname = "pyvesync";
version = "1.4.1";
version = "1.4.2";
format = "setuptools";
disabled = pythonOlder "3.6";
src = fetchPypi {
inherit pname version;
sha256 = "f8bc6ebbe2c2bf37009b50b16e34747b0cfe35dd249aed4525b68c3af061941f";
sha256 = "sha256-O5zt1FiCQAlCaGaiEyrannqZjm4oGq36d4Fa77ys+HE=";
};
propagatedBuildInputs = [ requests ];
propagatedBuildInputs = [
requests
];
# Test are not available (not in PyPI tarball and there are no GitHub releases)
doCheck = false;
pythonImportsCheck = [ "pyvesync" ];
pythonImportsCheck = [
"pyvesync"
];
meta = with lib; {
description = "Python library to manage Etekcity Devices and Levoit Air Purifier";

Loading…
Cancel
Save