Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / python-modules / mwxml / default.nix
blob792b52f01abc59597d6bce9de8fe54ef3393054d
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";
15   src = fetchPypi {
16     inherit pname version;
17     hash = "sha256-CEjfDPLik3GPVUMRrPRxW9Z59jn05Sy+R9ggZYnbHTE=";
18   };
20   propagatedBuildInputs = [
21     jsonschema
22     mwcli
23     mwtypes
24   ];
26   nativeCheckInputs = [
27     nose
28     pytestCheckHook
29   ];
31   disabledTests = [
32     "test_page_with_discussion"
33   ];
35   pythonImportsCheck = [ "mwxml" ];
37   meta = with lib; {
38     description = "A set of utilities for processing MediaWiki XML dump data";
39     homepage = "https://github.com/mediawiki-utilities/python-mwxml";
40     license = licenses.mit;
41     maintainers = with maintainers; [ GaetanLepage ];
42   };