python3Packages.mwcli: init at 0.0.3

This commit is contained in:
Gaetan Lepage 2023-07-07 19:24:20 +02:00
parent 9209e1ff2e
commit c461142d74
2 changed files with 43 additions and 0 deletions

View file

@ -0,0 +1,41 @@
{ lib
, buildPythonPackage
, fetchPypi
, pythonRelaxDepsHook
, docopt
, para
}:
buildPythonPackage rec {
pname = "mwcli";
version = "0.0.3";
src = fetchPypi {
inherit pname version;
hash = "sha256-ADMb0P8WtXIcnGJ02R4l/TVfRewHc8ig45JurAWHGaA=";
};
# Prevent circular dependency
pythonRemoveDeps = [
"mwxml"
];
nativeBuildInputs = [
pythonRelaxDepsHook
];
propagatedBuildInputs = [
docopt
para
];
# Tests require mwxml which itself depends on this package (circular dependency)
doCheck = false;
meta = with lib; {
description = "A set of helper functions and classes for mediawiki-utilities command-line utilities";
homepage = "https://github.com/mediawiki-utilities/python-mwcli";
license = licenses.mit;
maintainers = with maintainers; [ GaetanLepage ];
};
}

View file

@ -6714,6 +6714,8 @@ self: super: with self; {
mujson = callPackage ../development/python-modules/mujson { };
mwcli = callPackage ../development/python-modules/mwcli { };
mwclient = callPackage ../development/python-modules/mwclient { };
mwdblib = callPackage ../development/python-modules/mwdblib { };