mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-18 19:03:28 +00:00
python3Packages.pypandoc: add pythonImportsCheck
This commit is contained in:
parent
10e247864e
commit
29d51a6baf
@ -1,11 +1,19 @@
|
||||
{ lib, substituteAll, buildPythonPackage, fetchFromGitHub
|
||||
, pandoc, pandocfilters, texlive
|
||||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchFromGitHub
|
||||
, pandoc
|
||||
, pandocfilters
|
||||
, pythonOlder
|
||||
, substituteAll
|
||||
, texlive
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "pypandoc";
|
||||
version = "1.10";
|
||||
|
||||
disabled = pythonOlder "3.7";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "JessicaTegner";
|
||||
repo = pname;
|
||||
@ -27,6 +35,10 @@ buildPythonPackage rec {
|
||||
pandocfilters
|
||||
];
|
||||
|
||||
pythonImportsCheck = [
|
||||
"pypandoc"
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Thin wrapper for pandoc";
|
||||
homepage = "https://github.com/JessicaTegner/pypandoc";
|
||||
|
Loading…
Reference in New Issue
Block a user