mastodon: 4.3.1 -> 4.3.2 (#361487)
[NixPkgs.git] / pkgs / development / python-modules / mwcli / default.nix
blobadcc5ab1e34cca09318b2c7cba2d66a4a4a0e07d
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5   docopt,
6   para,
7 }:
9 buildPythonPackage rec {
10   pname = "mwcli";
11   version = "0.0.3";
12   format = "setuptools";
14   src = fetchPypi {
15     inherit pname version;
16     hash = "sha256-ADMb0P8WtXIcnGJ02R4l/TVfRewHc8ig45JurAWHGaA=";
17   };
19   # Prevent circular dependency
20   pythonRemoveDeps = [ "mwxml" ];
23   propagatedBuildInputs = [
24     docopt
25     para
26   ];
28   # Tests require mwxml which itself depends on this package (circular dependency)
29   doCheck = false;
31   meta = with lib; {
32     description = "Set of helper functions and classes for mediawiki-utilities command-line utilities";
33     homepage = "https://github.com/mediawiki-utilities/python-mwcli";
34     license = licenses.mit;
35     maintainers = with maintainers; [ GaetanLepage ];
36   };