 4183617160
			
		
	
	
		4183617160
		
	
	
	
	
		
			
			Diff: https://github.com/tronikos/gassist_text/compare/refs/tags/0.0.12...refs/tags/0.0.14 Changelog: https://github.com/tronikos/gassist_text/releases/tag/0.0.14
		
			
				
	
	
		
			51 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			51 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			Nix
		
	
	
	
	
	
| {
 | |
|   lib,
 | |
|   beautifulsoup4,
 | |
|   buildPythonPackage,
 | |
|   fetchFromGitHub,
 | |
|   google-auth,
 | |
|   grpcio,
 | |
|   protobuf,
 | |
|   pytestCheckHook,
 | |
|   pythonOlder,
 | |
|   requests,
 | |
|   setuptools,
 | |
| }:
 | |
| 
 | |
| buildPythonPackage rec {
 | |
|   pname = "gassist-text";
 | |
|   version = "0.0.14";
 | |
|   format = "pyproject";
 | |
| 
 | |
|   disabled = pythonOlder "3.7";
 | |
| 
 | |
|   src = fetchFromGitHub {
 | |
|     owner = "tronikos";
 | |
|     repo = "gassist_text";
 | |
|     tag = version;
 | |
|     hash = "sha256-Nk2GwqColX/d1nUL+YvolLH/1g1FTDZbExhBGot/EV0=";
 | |
|   };
 | |
| 
 | |
|   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 ];
 | |
|   };
 | |
| }
 |