summary refs log tree commit diff
path: root/pkgs/development/python-modules/python-frontmatter/default.nix
blob: 4670d58420bb9b77a66eb33a37da5446f1aa7f68 (plain) (blame)
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
31
32
33
34
35
36
{ lib, fetchFromGitHub, buildPythonPackage, pyyaml, six, pytest, pyaml }:

buildPythonPackage rec {
  pname = "python-frontmatter";
  version = "1.0.1";

  src = fetchFromGitHub {
    owner = "eyeseast";
    repo = pname;
    rev = "refs/tags/v${version}";
    sha256 = "sha256-lkBCKZ1fZF580+4TnHYkfaGJjsWk7/Ksnk7VagZuef8=";
  };

  propagatedBuildInputs = [
    pyyaml
    pyaml # yes, it's needed
    six
  ];

  # tries to import test.test, which conflicts with module
  # exported by python interpreter
  doCheck = false;
  nativeCheckInputs = [
    pytest
  ];

  pythonImportsCheck = [ "frontmatter" ];

  meta = with 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 = platforms.unix;
  };
}