| 
									
										
										
										
											2021-01-25 09:26:54 +01:00
										 |  |  | { lib, fetchFromGitHub, python3Packages }: | 
					
						
							| 
									
										
										
										
											2020-11-14 22:24:02 +07:00
										 |  |  | 
 | 
					
						
							|  |  |  | python3Packages.buildPythonPackage rec { | 
					
						
							|  |  |  |   pname = "python-frontmatter"; | 
					
						
							|  |  |  |   version = "0.5.0"; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   src = fetchFromGitHub { | 
					
						
							|  |  |  |     owner = "eyeseast"; | 
					
						
							|  |  |  |     repo = pname; | 
					
						
							|  |  |  |     rev = "v${version}"; | 
					
						
							|  |  |  |     sha256 = "1iki3rcbg7zs93m3mgqzncybqgdcch25qpwy84iz96qq8pipfs6g"; | 
					
						
							|  |  |  |   }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   propagatedBuildInputs = with python3Packages; [ | 
					
						
							|  |  |  |     pyyaml | 
					
						
							|  |  |  |     six | 
					
						
							|  |  |  |   ]; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   checkInputs = with python3Packages; [ | 
					
						
							|  |  |  |     pytest | 
					
						
							|  |  |  |   ]; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-01-11 08:54:33 +01:00
										 |  |  |   meta = with lib; { | 
					
						
							| 
									
										
										
										
											2020-11-14 22:24:02 +07:00
										 |  |  |     homepage = "https://github.com/eyeseast/python-frontmatter"; | 
					
						
							|  |  |  |     description = "Parse and manage posts with YAML (or other) frontmatter"; | 
					
						
							|  |  |  |     license = licenses.mit; | 
					
						
							|  |  |  |     maintainers = with maintainers; [ siraben ]; | 
					
						
							|  |  |  |     platforms = lib.platforms.unix; | 
					
						
							|  |  |  |   }; | 
					
						
							|  |  |  | } |