| 
									
										
										
										
											2018-04-03 13:47:57 +02:00
										 |  |  | { stdenv, buildPythonPackage, fetchPypi }: | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | buildPythonPackage rec { | 
					
						
							|  |  |  |   pname = "tblib"; | 
					
						
							| 
									
										
										
										
											2019-12-19 20:31:23 +01:00
										 |  |  |   version = "1.6.0"; | 
					
						
							| 
									
										
										
										
											2018-04-03 13:47:57 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |   src = fetchPypi { | 
					
						
							|  |  |  |     inherit pname version; | 
					
						
							| 
									
										
										
										
											2019-12-19 20:31:23 +01:00
										 |  |  |     sha256 = "229bee3754cb5d98b4837dd5c4405e80cfab57cb9f93220410ad367f8b352344"; | 
					
						
							| 
									
										
										
										
											2018-04-03 13:47:57 +02:00
										 |  |  |   }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   meta = with stdenv.lib; { | 
					
						
							|  |  |  |     description = "Traceback fiddling library. Allows you to pickle tracebacks."; | 
					
						
							| 
									
										
										
										
											2020-03-31 21:11:51 -04:00
										 |  |  |     homepage = "https://github.com/ionelmc/python-tblib"; | 
					
						
							| 
									
										
										
										
											2018-04-03 13:47:57 +02:00
										 |  |  |     license = licenses.bsd2; | 
					
						
							|  |  |  |     maintainers = with maintainers; [ teh ]; | 
					
						
							|  |  |  |   }; | 
					
						
							|  |  |  | } |