fdcf51d12c
Diff: https://github.com/tronikos/gassist_text/compare/refs/tags/0.0.10...0.0.11 Changelog: https://github.com/tronikos/gassist_text/releases/tag/0.0.11
55 lines
1 KiB
Nix
55 lines
1 KiB
Nix
{ 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 ];
|
|
};
|
|
}
|