nixpkgs/pkgs/development/python-modules/python-frontmatter/default.nix
Guillaume Girol 33afbf39f6 treewide: switch to nativeCheckInputs
checkInputs used to be added to nativeBuildInputs. Now we have
nativeCheckInputs to do that instead. Doing this treewide change allows
to keep hashes identical to before the introduction of
nativeCheckInputs.
2023-01-21 12:00:00 +00:00

37 lines
880 B
Nix

{ lib, fetchFromGitHub, buildPythonPackage, pyyaml, six, pytest, pyaml }:
buildPythonPackage rec {
pname = "python-frontmatter";
version = "1.0.0";
src = fetchFromGitHub {
owner = "eyeseast";
repo = pname;
rev = "v${version}";
sha256 = "0flyh2pb0z4lq66dmmsgyakvg11yhkp4dk7qnzanl34z7ikp97bx";
};
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;
};
}