| 
									
										
										
										
											2018-02-26 19:38:16 +08:00
										 |  |  | { stdenv, buildPythonPackage, fetchPypi | 
					
						
							|  |  |  | , aiohttp, jsonrpc-base }: | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | buildPythonPackage rec { | 
					
						
							|  |  |  |   pname = "jsonrpc-async"; | 
					
						
							| 
									
										
										
										
											2019-11-19 15:35:36 +01:00
										 |  |  |   version = "1.1.1"; | 
					
						
							| 
									
										
										
										
											2018-02-26 19:38:16 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |   src = fetchPypi { | 
					
						
							|  |  |  |     inherit pname version; | 
					
						
							| 
									
										
										
										
											2019-11-19 15:35:36 +01:00
										 |  |  |     sha256 = "383f331e28cd8f6e3fa86f3e7052efa541b7ae8bf328a4e692aa045cfc0ecf25"; | 
					
						
							| 
									
										
										
										
											2018-02-26 19:38:16 +08:00
										 |  |  |   }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   propagatedBuildInputs = [ aiohttp jsonrpc-base ]; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   meta = with stdenv.lib; { | 
					
						
							|  |  |  |     description = "A JSON-RPC client library for asyncio"; | 
					
						
							| 
									
										
										
										
											2020-03-31 21:11:51 -04:00
										 |  |  |     homepage = "https://github.com/armills/jsonrpc-async"; | 
					
						
							| 
									
										
										
										
											2018-02-26 19:38:16 +08:00
										 |  |  |     license = licenses.bsd3; | 
					
						
							|  |  |  |     maintainers = with maintainers; [ peterhoeg ]; | 
					
						
							|  |  |  |   }; | 
					
						
							|  |  |  | } |