depot/third_party/nixpkgs/pkgs/development/python-modules/python-frontmatter/default.nix
Default email 51e09efdfc Project import generated by Copybara.
GitOrigin-RevId: 296793637b22bdb4d23b479879eba0a71c132a66
2020-12-03 09:41:04 +01:00

30 lines
737 B
Nix

{ stdenv, lib, fetchFromGitHub, python3Packages }:
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
];
meta = with stdenv.lib; {
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;
};
}