summaryrefslogtreecommitdiffstats
path: root/pkgs/development/python-modules/pyvesync/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/python-modules/pyvesync/default.nix')
-rw-r--r--pkgs/development/python-modules/pyvesync/default.nix15
1 files changed, 11 insertions, 4 deletions
diff --git a/pkgs/development/python-modules/pyvesync/default.nix b/pkgs/development/python-modules/pyvesync/default.nix
index e1ae55fd5e41..50a412768c06 100644
--- a/pkgs/development/python-modules/pyvesync/default.nix
+++ b/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";