Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
37 lines
784 B
Nix
37 lines
784 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchPypi,
|
|
docopt,
|
|
para,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "mwcli";
|
|
version = "0.0.3";
|
|
format = "setuptools";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-ADMb0P8WtXIcnGJ02R4l/TVfRewHc8ig45JurAWHGaA=";
|
|
};
|
|
|
|
# Prevent circular dependency
|
|
pythonRemoveDeps = [ "mwxml" ];
|
|
|
|
propagatedBuildInputs = [
|
|
docopt
|
|
para
|
|
];
|
|
|
|
# Tests require mwxml which itself depends on this package (circular dependency)
|
|
doCheck = false;
|
|
|
|
meta = with lib; {
|
|
description = "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 ];
|
|
};
|
|
}
|