about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/gassist-text
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/development/python-modules/gassist-text')
-rw-r--r--nixpkgs/pkgs/development/python-modules/gassist-text/default.nix55
1 files changed, 55 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/development/python-modules/gassist-text/default.nix b/nixpkgs/pkgs/development/python-modules/gassist-text/default.nix
new file mode 100644
index 000000000000..a8e7b14de892
--- /dev/null
+++ b/nixpkgs/pkgs/development/python-modules/gassist-text/default.nix
@@ -0,0 +1,55 @@
+{ lib
+, beautifulsoup4
+, buildPythonPackage
+, fetchFromGitHub
+, google-auth
+, grpcio
+, protobuf
+, pytestCheckHook
+, pythonOlder
+, requests
+, setuptools
+}:
+
+buildPythonPackage rec {
+  pname = "gassist-text";
+  version = "0.0.11";
+  format = "pyproject";
+
+  disabled = pythonOlder "3.7";
+
+  src = fetchFromGitHub {
+    owner = "tronikos";
+    repo = "gassist_text";
+    rev = "refs/tags/${version}";
+    hash = "sha256-XFHyI48TuPBJjHA4dLSpYv62Y5zK0knrIqNKBoWnEeU=";
+  };
+
+  nativeBuildInputs = [
+    setuptools
+  ];
+
+  propagatedBuildInputs = [
+    beautifulsoup4
+    google-auth
+    grpcio
+    protobuf
+    requests
+  ];
+
+  checkInputs = [
+    pytestCheckHook
+  ];
+
+  pythonImportsCheck = [
+    "gassist_text"
+  ];
+
+  meta = with lib; {
+    description = "Module for interacting with Google Assistant API via text";
+    homepage = "https://github.com/tronikos/gassist_text";
+    changelog = "https://github.com/tronikos/gassist_text/releases/tag/${version}";
+    license = with licenses; [ asl20 ];
+    maintainers = with maintainers; [ fab ];
+  };
+}