| 
									
										
										
										
											2017-09-03 09:01:33 +00:00
										 |  |  | { stdenv, buildPythonPackage, fetchPypi, | 
					
						
							|  |  |  |   click, pytest | 
					
						
							|  |  |  | }: | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | buildPythonPackage rec { | 
					
						
							|  |  |  |   pname = "click-plugins"; | 
					
						
							| 
									
										
										
										
											2018-10-06 12:56:16 +02:00
										 |  |  |   version = "1.0.4"; | 
					
						
							| 
									
										
										
										
											2017-09-03 09:01:33 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |   src = fetchPypi { | 
					
						
							|  |  |  |     inherit pname version; | 
					
						
							| 
									
										
										
										
											2018-10-06 12:56:16 +02:00
										 |  |  |     sha256 = "dfed74b5063546a137de99baaaf742b4de4337ad2b3e1df5ec7c8a256adc0847"; | 
					
						
							| 
									
										
										
										
											2017-09-03 09:01:33 +00:00
										 |  |  |   }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   propagatedBuildInputs = [ | 
					
						
							|  |  |  |     click | 
					
						
							|  |  |  |   ]; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   checkInputs = [ | 
					
						
							|  |  |  |     pytest | 
					
						
							|  |  |  |   ]; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   meta = with stdenv.lib; { | 
					
						
							|  |  |  |     description = "An extension module for click to enable registering CLI commands"; | 
					
						
							|  |  |  |     homepage = https://github.com/click-contrib/click-plugins; | 
					
						
							|  |  |  |     license = licenses.bsd3; | 
					
						
							|  |  |  |     maintainers = with maintainers; [ knedlsepp ]; | 
					
						
							|  |  |  |   }; | 
					
						
							|  |  |  | } |