Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / gassist-text / default.nix
bloba8e7b14de8925cdac3fc6e6751a59eb1b1444e4b
1 { lib
2 , beautifulsoup4
3 , buildPythonPackage
4 , fetchFromGitHub
5 , google-auth
6 , grpcio
7 , protobuf
8 , pytestCheckHook
9 , pythonOlder
10 , requests
11 , setuptools
14 buildPythonPackage rec {
15   pname = "gassist-text";
16   version = "0.0.11";
17   format = "pyproject";
19   disabled = pythonOlder "3.7";
21   src = fetchFromGitHub {
22     owner = "tronikos";
23     repo = "gassist_text";
24     rev = "refs/tags/${version}";
25     hash = "sha256-XFHyI48TuPBJjHA4dLSpYv62Y5zK0knrIqNKBoWnEeU=";
26   };
28   nativeBuildInputs = [
29     setuptools
30   ];
32   propagatedBuildInputs = [
33     beautifulsoup4
34     google-auth
35     grpcio
36     protobuf
37     requests
38   ];
40   checkInputs = [
41     pytestCheckHook
42   ];
44   pythonImportsCheck = [
45     "gassist_text"
46   ];
48   meta = with lib; {
49     description = "Module for interacting with Google Assistant API via text";
50     homepage = "https://github.com/tronikos/gassist_text";
51     changelog = "https://github.com/tronikos/gassist_text/releases/tag/${version}";
52     license = with licenses; [ asl20 ];
53     maintainers = with maintainers; [ fab ];
54   };