python3Packages.pyaml: add pythonImportsCheck

This commit is contained in:
Fabian Affolter 2021-08-25 17:00:17 +02:00
parent 399fb3046f
commit d965e5124b

View File

@ -14,13 +14,20 @@ buildPythonPackage rec {
sha256 = "sha256-oWNtY8R2MooHIT0LcRG7Y1cPGrij7d9gUiYwJQwj2XU=";
};
propagatedBuildInputs = [ pyyaml ];
propagatedBuildInputs = [
pyyaml
];
checkInputs = [ unidecode ];
checkInputs = [
unidecode
];
meta = {
pythonImportsCheck = [ "pyaml" ];
meta = with lib; {
description = "PyYAML-based module to produce pretty and readable YAML-serialized data";
homepage = "https://github.com/mk-fg/pretty-yaml";
license = lib.licenses.wtfpl;
license = licenses.wtfpl;
maintainers = with maintainers; [ ];
};
}