| 
									
										
										
										
											2020-03-26 02:26:15 -07:00
										 |  |  | { buildPythonPackage, fetchPypi, lib | 
					
						
							|  |  |  | , dicttoxml | 
					
						
							|  |  |  | , importlib-metadata | 
					
						
							|  |  |  | , pexpect | 
					
						
							|  |  |  | , prettytable | 
					
						
							|  |  |  | , requests_toolbelt | 
					
						
							| 
									
										
										
										
											2017-05-26 23:36:19 +10:00
										 |  |  | }: | 
					
						
							|  |  |  | buildPythonPackage rec { | 
					
						
							|  |  |  |   pname = "argcomplete"; | 
					
						
							| 
									
										
										
										
											2020-03-26 02:26:15 -07:00
										 |  |  |   version = "1.11.1"; | 
					
						
							| 
									
										
										
										
											2017-05-26 23:36:19 +10:00
										 |  |  | 
 | 
					
						
							|  |  |  |   src = fetchPypi { | 
					
						
							|  |  |  |     inherit pname version; | 
					
						
							| 
									
										
										
										
											2020-03-26 02:26:15 -07:00
										 |  |  |     sha256 = "0h1przxffrhqvi46k40pzjsvdrq4zc3sl1pc96kkigqppq0vdrss"; | 
					
						
							| 
									
										
										
										
											2017-05-26 23:36:19 +10:00
										 |  |  |   }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-26 02:26:15 -07:00
										 |  |  |   doCheck = false; # meant to be ran with interactive interpreter | 
					
						
							| 
									
										
										
										
											2017-05-26 23:36:19 +10:00
										 |  |  | 
 | 
					
						
							|  |  |  |   # re-enable if we are able to make testing work | 
					
						
							| 
									
										
										
										
											2020-03-26 02:26:15 -07:00
										 |  |  |   # checkInputs = [ bashInteractive coverage flake8 ]; | 
					
						
							| 
									
										
										
										
											2017-05-26 23:36:19 +10:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-26 02:26:15 -07:00
										 |  |  |   propagatedBuildInputs = [ | 
					
						
							|  |  |  |     dicttoxml | 
					
						
							|  |  |  |     importlib-metadata | 
					
						
							|  |  |  |     pexpect | 
					
						
							|  |  |  |     prettytable | 
					
						
							|  |  |  |     requests_toolbelt | 
					
						
							|  |  |  |   ]; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   pythonImportsCheck = [ "argcomplete" ]; | 
					
						
							| 
									
										
										
										
											2017-05-26 23:36:19 +10:00
										 |  |  | 
 | 
					
						
							|  |  |  |   meta = with lib; { | 
					
						
							|  |  |  |     description = "Bash tab completion for argparse"; | 
					
						
							| 
									
										
										
										
											2020-03-26 02:26:15 -07:00
										 |  |  |     homepage = "https://kislyuk.github.io/argcomplete/"; | 
					
						
							| 
									
										
										
										
											2017-05-26 23:36:19 +10:00
										 |  |  |     maintainers = [ maintainers.womfoo ]; | 
					
						
							|  |  |  |     license = [ licenses.asl20 ]; | 
					
						
							|  |  |  |   }; | 
					
						
							|  |  |  | } |