mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 21:50:55 +00:00
python3Packages.mwparserfromhell: fix tests; add missing check inputs
This commit is contained in:
parent
af84578114
commit
b426c4fa52
|
@ -1,6 +1,8 @@
|
|||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, pytestCheckHook
|
||||
, pytestrunner
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
|
@ -12,6 +14,11 @@ buildPythonPackage rec {
|
|||
sha256 = "d3f74c0101f81ff73c61985b67f2e7048a30dc5f6a578ea1544e69133988d874";
|
||||
};
|
||||
|
||||
checkInputs = [
|
||||
pytestCheckHook
|
||||
pytestrunner
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "MWParserFromHell is a parser for MediaWiki wikicode";
|
||||
homepage = "https://mwparserfromhell.readthedocs.io/en/latest/";
|
||||
|
|
Loading…
Reference in a new issue