| 
									
										
										
										
											2018-10-29 10:24:44 -04:00
										 |  |  | { stdenv | 
					
						
							|  |  |  | , buildPythonPackage | 
					
						
							|  |  |  | , fetchPypi | 
					
						
							|  |  |  | , zope_schema | 
					
						
							|  |  |  | }: | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | buildPythonPackage rec { | 
					
						
							|  |  |  |   pname = "zope.filerepresentation"; | 
					
						
							| 
									
										
										
										
											2018-11-04 11:35:23 +01:00
										 |  |  |   version = "4.2.0"; | 
					
						
							| 
									
										
										
										
											2018-10-29 10:24:44 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  |   src = fetchPypi { | 
					
						
							|  |  |  |     inherit pname version; | 
					
						
							| 
									
										
										
										
											2018-11-04 11:35:23 +01:00
										 |  |  |     sha256 = "c9bff2b2492b2fe716ee54538441a98d6145d1de87dd921eaa44ac834fbb63b6"; | 
					
						
							| 
									
										
										
										
											2018-10-29 10:24:44 -04:00
										 |  |  |   }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   propagatedBuildInputs = [ zope_schema ]; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   meta = with stdenv.lib; { | 
					
						
							|  |  |  |     homepage = http://zopefilerepresentation.readthedocs.io/; | 
					
						
							|  |  |  |     description = "File-system Representation Interfaces"; | 
					
						
							|  |  |  |     license = licenses.zpl20; | 
					
						
							|  |  |  |     maintainers = with maintainers; [ goibhniu ]; | 
					
						
							|  |  |  |   }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | } |