Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / mwxml / default.nix
blob28d30332520933ad0be6455fc7eb39a50aec3dce
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , jsonschema
5 , mwcli
6 , mwtypes
7 , nose
8 , pytestCheckHook
9 }:
11 buildPythonPackage rec {
12   pname = "mwxml";
13   version = "0.3.3";
14   format = "setuptools";
16   src = fetchPypi {
17     inherit pname version;
18     hash = "sha256-CEjfDPLik3GPVUMRrPRxW9Z59jn05Sy+R9ggZYnbHTE=";
19   };
21   propagatedBuildInputs = [
22     jsonschema
23     mwcli
24     mwtypes
25   ];
27   nativeCheckInputs = [
28     nose
29     pytestCheckHook
30   ];
32   disabledTests = [
33     "test_page_with_discussion"
34   ];
36   pythonImportsCheck = [ "mwxml" ];
38   meta = with lib; {
39     description = "A set of utilities for processing MediaWiki XML dump data";
40     mainProgram = "mwxml";
41     homepage = "https://github.com/mediawiki-utilities/python-mwxml";
42     license = licenses.mit;
43     maintainers = with maintainers; [ GaetanLepage ];
44   };