python3Packages.wavinsentio: 0.4.1 -> 0.5.0 (#421939)

authored by Fabian Affolter and committed by GitHub bd9bcaf4 2107c026

+9 -9
+9 -9
pkgs/development/python-modules/wavinsentio/default.nix
··· 2 2 lib, 3 3 buildPythonPackage, 4 4 fetchPypi, 5 - pythonOlder, 6 5 requests, 6 + setuptools, 7 7 }: 8 8 9 9 buildPythonPackage rec { 10 10 pname = "wavinsentio"; 11 - version = "0.4.1"; 12 - format = "setuptools"; 13 - 14 - disabled = pythonOlder "3.8"; 11 + version = "0.5.0"; 12 + pyproject = true; 15 13 16 14 src = fetchPypi { 17 15 inherit pname version; 18 - hash = "sha256-Oko3Ivj95vajNWjQTQK18i5B/DIBngjw2HLlzYqLv2Y="; 16 + hash = "sha256-YSofEjDehuNlenkAsQzLkX67Um4pkMSeZmVZgNA06vw="; 19 17 }; 20 18 21 - propagatedBuildInputs = [ requests ]; 19 + build-system = [ setuptools ]; 20 + 21 + dependencies = [ requests ]; 22 22 23 - # Project has no tests 23 + # Module has no tests 24 24 doCheck = false; 25 25 26 26 pythonImportsCheck = [ "wavinsentio" ]; ··· 28 28 meta = with lib; { 29 29 description = "Python module to interact with the Wavin Sentio underfloor heating system"; 30 30 homepage = "https://github.com/djerik/wavinsentio"; 31 - license = with licenses; [ mit ]; 31 + license = licenses.mit; 32 32 maintainers = with maintainers; [ fab ]; 33 33 }; 34 34 }