Commit 7d321455 authored by Sigmanificient's avatar Sigmanificient
Browse files

python3Packages.pyarlo: fix build

parent 6993a946
Loading
Loading
Loading
Loading
+5 −2
Original line number Diff line number Diff line
@@ -6,13 +6,14 @@
  pytestCheckHook,
  requests,
  requests-mock,
  setuptools,
  sseclient-py,
}:

buildPythonPackage rec {
  pname = "pyarlo";
  version = "0.2.4";
  format = "setuptools";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "tchellomello";
@@ -21,7 +22,9 @@ buildPythonPackage rec {
    sha256 = "0pp7y2llk4xnf6zh57j5xas0gw5zqm42qaqssd8p4qa3g5rds8k3";
  };

  propagatedBuildInputs = [
  build-system = [ setuptools ];

  dependencies = [
    requests
    sseclient-py
  ];