Commit 16a364eb authored by Robert Schütz's avatar Robert Schütz
Browse files
parent b7a7e0b3
Loading
Loading
Loading
Loading
+3 −2
Original line number Diff line number Diff line
@@ -11,14 +11,14 @@

buildPythonPackage rec {
  pname = "watergate-local-api";
  version = "2024.4.1";
  version = "2025.1.0";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "watergate-ai";
    repo = "watergate-local-api-python";
    tag = version;
    hash = "sha256-zEbujtXTXjRRzpNdowh7xjBvCxwp7Z1QYRm6ZM8rFR8=";
    hash = "sha256-px1vtWGW9JlU9ZXvmTq9YXZDmWIU0xYy3KOyamGyY74=";
  };

  build-system = [ setuptools ];
@@ -36,6 +36,7 @@ buildPythonPackage rec {
  ];

  meta = {
    changelog = "https://github.com/watergate-ai/watergate-local-api-python/releases/tag/${src.tag}";
    description = "Python package to interact with the Watergate Local API";
    homepage = "https://github.com/watergate-ai/watergate-local-api-python";
    license = lib.licenses.gpl3Only;