| 
									
										
										
										
											2016-12-25 11:12:19 +01:00
										 |  |  | { buildPythonPackage | 
					
						
							|  |  |  | , lib | 
					
						
							| 
									
										
										
										
											2018-06-23 15:27:58 +02:00
										 |  |  | , fetchPypi | 
					
						
							| 
									
										
										
										
											2016-12-25 11:12:19 +01:00
										 |  |  | , pytest | 
					
						
							|  |  |  | , u-msgpack-python | 
					
						
							|  |  |  | , six | 
					
						
							|  |  |  | }: | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-09 19:26:09 +08:00
										 |  |  | buildPythonPackage rec { | 
					
						
							| 
									
										
										
										
											2016-12-25 11:12:19 +01:00
										 |  |  |   pname = "pytest-expect"; | 
					
						
							|  |  |  |   version = "1.1.0"; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-06-23 15:27:58 +02:00
										 |  |  |   src = fetchPypi { | 
					
						
							|  |  |  |     inherit pname version; | 
					
						
							| 
									
										
										
										
											2016-12-25 11:12:19 +01:00
										 |  |  |     sha256 = "36b4462704450798197d090809a05f4e13649d9cba9acdc557ce9517da1fd847"; | 
					
						
							|  |  |  |   }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   buildInputs = [ pytest ]; | 
					
						
							|  |  |  |   propagatedBuildInputs = [ u-msgpack-python six ]; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   # Tests in neither the archive nor the repo | 
					
						
							|  |  |  |   doCheck = false; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   meta = { | 
					
						
							|  |  |  |     description = "py.test plugin to store test expectations and mark tests based on them"; | 
					
						
							| 
									
										
										
										
											2020-03-31 21:11:51 -04:00
										 |  |  |     homepage = "https://github.com/gsnedders/pytest-expect"; | 
					
						
							| 
									
										
										
										
											2016-12-25 11:12:19 +01:00
										 |  |  |     license = lib.licenses.mit; | 
					
						
							|  |  |  |   }; | 
					
						
							| 
									
										
										
										
											2017-11-09 19:26:09 +08:00
										 |  |  | } |