Skip to content

Commit d7a1c33

Browse files
authored
python3Packages.growattserver: 1.7.0 -> 1.7.1 (#408598)
2 parents 14e8633 + a004f2f commit d7a1c33

File tree

1 file changed

+4
-7
lines changed
  • pkgs/development/python-modules/growattserver

1 file changed

+4
-7
lines changed

pkgs/development/python-modules/growattserver/default.nix

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,28 +2,25 @@
22
lib,
33
buildPythonPackage,
44
fetchFromGitHub,
5-
pythonOlder,
65
requests,
76
setuptools,
87
}:
98

109
buildPythonPackage rec {
1110
pname = "growattserver";
12-
version = "1.7.0";
11+
version = "1.7.1";
1312
pyproject = true;
1413

15-
disabled = pythonOlder "3.7";
16-
1714
src = fetchFromGitHub {
1815
owner = "indykoning";
1916
repo = "PyPi_GrowattServer";
2017
tag = version;
21-
hash = "sha256-oEI5WWwPO7HmB0lt0bP9VVbg0+wMF73XVRyYX/GvTHE=";
18+
hash = "sha256-rob2+uXuBD5Gf05rNFFEW210JxrTbWN7knk9Tnz7wOE=";
2219
};
2320

24-
nativeBuildInputs = [ setuptools ];
21+
build-system = [ setuptools ];
2522

26-
propagatedBuildInputs = [ requests ];
23+
dependencies = [ requests ];
2724

2825
# Project has no tests
2926
doCheck = false;

0 commit comments

Comments
 (0)