| 
									
										
										
										
											2019-03-15 22:28:01 +01:00
										 |  |  | { buildPythonPackage, fetchPypi, lib, pytest }: | 
					
						
							| 
									
										
										
										
											2018-07-28 07:23:41 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | buildPythonPackage rec { | 
					
						
							|  |  |  |   pname = "ordered-set"; | 
					
						
							| 
									
										
										
										
											2018-12-14 10:09:05 -08:00
										 |  |  |   version = "3.1"; | 
					
						
							| 
									
										
										
										
											2018-07-28 07:23:41 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-03-15 22:28:01 +01:00
										 |  |  |   checkInputs = [ pytest ]; | 
					
						
							| 
									
										
										
										
											2018-07-28 07:23:41 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  |   src = fetchPypi { | 
					
						
							|  |  |  |     inherit pname version; | 
					
						
							| 
									
										
										
										
											2018-12-14 10:09:05 -08:00
										 |  |  |     sha256 = "0slg1ys58dzxl96mws3sydzavdzqdk0s2nrc852dphd9kbm07dzr"; | 
					
						
							| 
									
										
										
										
											2018-07-28 07:23:41 -07:00
										 |  |  |   }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   checkPhase = ''
 | 
					
						
							|  |  |  |     py.test test.py | 
					
						
							|  |  |  |   '';
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   meta = { | 
					
						
							|  |  |  |     description = "A MutableSet that remembers its order, so that every entry has an index."; | 
					
						
							|  |  |  |     license = lib.licenses.mit; | 
					
						
							|  |  |  |     maintainers = [ lib.maintainers.MostAwesomeDude ]; | 
					
						
							|  |  |  |   }; | 
					
						
							|  |  |  | } |