Merge pull request #146851 from fabaff/bump-pyvesync
python3Packages.pyvesync: 1.4.1 -> 1.4.2
This commit is contained in:
commit
4170977b42
1 changed files with 11 additions and 4 deletions
|
@ -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";
|
||||||
|
|
Loading…
Reference in a new issue