ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / mwparserfromhell / default.nix
blobb8399bebef469742eba371f0f7a68ccccfa272cb
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , pytestCheckHook
5 , pytest-runner
6 }:
8 buildPythonPackage rec {
9   pname = "mwparserfromhell";
10   version = "0.6.4";
12   src = fetchPypi {
13     inherit pname version;
14     sha256 = "sha256-kr7JUorjTScok8yvK1J9+FwxT/KM+7MFY0BGewldg0w=";
15   };
17   checkInputs = [
18     pytestCheckHook
19     pytest-runner
20   ];
22   meta = with lib; {
23     description = "MWParserFromHell is a parser for MediaWiki wikicode";
24     homepage = "https://mwparserfromhell.readthedocs.io/en/latest/";
25     license = licenses.mit;
26     maintainers = with maintainers; [ melling ];
27   };