Merge pull request #146851 from fabaff/bump-pyvesync

python3Packages.pyvesync: 1.4.1 -> 1.4.2
This commit is contained in:
Fabian Affolter 2021-11-21 23:25:22 +01:00 committed by GitHub
commit 4170977b42
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

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