Commit 7fce0b5b authored by Fabian Affolter's avatar Fabian Affolter
Browse files
parent 7a05d8aa
Loading
Loading
Loading
Loading
+7 −2
Original line number Diff line number Diff line
@@ -5,16 +5,21 @@

python3.pkgs.buildPythonApplication rec {
  pname = "lacus";
  version = "1.9.0";
  version = "1.10.0";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "ail-project";
    repo = "lacus";
    rev = "refs/tags/v${version}";
    hash = "sha256-VFNW13PupJOroIhqnuLOq3mqU9nXEy1hmjHBQfErSN8=";
    hash = "sha256-5KddApwaN4t+QRaQTqIXuYStuPxKq3v6pRknBusAcbM=";
  };

  pythonRelaxDeps = [
    "psutil"
    "redis"
  ];

  build-system = with python3.pkgs; [
    poetry-core
  ];