aboutsummaryrefslogtreecommitdiff
path: root/infra/libkookie/nixpkgs/pkgs/development/python-modules/python-frontmatter/default.nix
blob: 8edd87556675d7ce1a737109bc0b9eab3838d223 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
{ 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;
  };
}