Unverified Commit bd9bcaf4 authored by Fabian Affolter's avatar Fabian Affolter Committed by GitHub
Browse files

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

parents 2107c026 3225bfda
Loading
Loading
Loading
Loading
+9 −9
Original line number Diff line number Diff line
@@ -2,25 +2,25 @@
  lib,
  buildPythonPackage,
  fetchPypi,
  pythonOlder,
  requests,
  setuptools,
}:

buildPythonPackage rec {
  pname = "wavinsentio";
  version = "0.4.1";
  format = "setuptools";

  disabled = pythonOlder "3.8";
  version = "0.5.0";
  pyproject = true;

  src = fetchPypi {
    inherit pname version;
    hash = "sha256-Oko3Ivj95vajNWjQTQK18i5B/DIBngjw2HLlzYqLv2Y=";
    hash = "sha256-YSofEjDehuNlenkAsQzLkX67Um4pkMSeZmVZgNA06vw=";
  };

  propagatedBuildInputs = [ requests ];
  build-system = [ setuptools ];

  dependencies = [ requests ];

  # Project has no tests
  # Module has no tests
  doCheck = false;

  pythonImportsCheck = [ "wavinsentio" ];
@@ -28,7 +28,7 @@ buildPythonPackage rec {
  meta = with lib; {
    description = "Python module to interact with the Wavin Sentio underfloor heating system";
    homepage = "https://github.com/djerik/wavinsentio";
    license = with licenses; [ mit ];
    license = licenses.mit;
    maintainers = with maintainers; [ fab ];
  };
}