Unverified Commit 59cc70f7 authored by Nick Cao's avatar Nick Cao Committed by GitHub
Browse files

Merge pull request #288888 from fabaff/pyrisco-bump

python311Packages.pyrisco: 0.5.8 -> 0.5.9
parents 249dc99f 50438a5c
Loading
Loading
Loading
Loading
+12 −5
Original line number Diff line number Diff line
@@ -3,21 +3,27 @@
, buildPythonPackage
, fetchFromGitHub
, pythonOlder
, setuptools
}:

buildPythonPackage rec {
  pname = "pyrisco";
  version = "0.5.8";
  format = "setuptools";
  version = "0.5.9";
  pyproject = true;

  disabled = pythonOlder "3.7";

  src = fetchFromGitHub {
    owner = "OnFreund";
    repo = pname;
    rev = "v${version}";
    hash = "sha256-PQ1h9UVQ2DQMInxdAaLES7uDWAxwDra+YfAmz5jjV6g=";
    repo = "pyrisco";
    rev = "refs/tags/v${version}";
    hash = "sha256-qapJcYesOddXFChApFT7hvxLblUigDW40zRe6CYWx+s=";
  };

  nativeBuildInputs = [
    setuptools
  ];

  propagatedBuildInputs = [
    aiohttp
  ];
@@ -32,6 +38,7 @@ buildPythonPackage rec {
  meta = with lib; {
    description = "Python interface to Risco alarm systems through Risco Cloud";
    homepage = "https://github.com/OnFreund/pyrisco";
    changelog = "https://github.com/OnFreund/pyrisco/releases/tag/v${version}";
    license = with licenses; [ mit ];
    maintainers = with maintainers; [ fab ];
  };