pythonPackages.mwparserfromhell: init at 0.5.4
This commit is contained in:
parent
1346c43158
commit
6c9d4bc846
21
pkgs/development/python-modules/mwparserfromhell/default.nix
Normal file
21
pkgs/development/python-modules/mwparserfromhell/default.nix
Normal file
@ -0,0 +1,21 @@
|
||||
{ stdenv
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "mwparserfromhell";
|
||||
version = "0.5.4";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "aaf5416ab9b75e99e286f8a4216f77a2f7d834afd4c8f81731e701e59bf99305";
|
||||
};
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "MWParserFromHell is a parser for MediaWiki wikicode";
|
||||
homepage = "https://mwparserfromhell.readthedocs.io/en/latest/";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ melling ];
|
||||
};
|
||||
}
|
@ -5929,6 +5929,8 @@ in {
|
||||
flickrapi = callPackage ../development/python-modules/flickrapi { };
|
||||
|
||||
aioesphomeapi = callPackage ../development/python-modules/aioesphomeapi { };
|
||||
|
||||
mwparserfromhell = callPackage ../development/python-modules/mwparserfromhell { };
|
||||
});
|
||||
|
||||
in fix' (extends overrides packages)
|
||||
|
Loading…
Reference in New Issue
Block a user