Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / mwtypes / default.nix
blobb51b5d417a13a1c1ca98f800267624c635ecbd0b
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , jsonable
5 , nose
6 , pytestCheckHook
7 }:
9 buildPythonPackage rec {
10   pname = "mwtypes";
11   version = "0.3.2";
12   format = "setuptools";
14   src = fetchPypi {
15     inherit pname version;
16     hash = "sha256-3BF2xZZWKcEj6FmzGa5hUdTjhVMemngWBMDUyjQ045k=";
17   };
19   propagatedBuildInputs = [ jsonable ];
21   nativeCheckInputs = [
22     nose
23     pytestCheckHook
24   ];
26   disabledTests = [
27     "test_normalize_path_bad_extension"
28     "test_open_file"
29   ];
31   pythonImportsCheck = [ "mwtypes" ];
33   meta = with lib; {
34     description = "A set of classes for working with MediaWiki data types.";
35     homepage = "https://github.com/mediawiki-utilities/python-mwtypes";
36     license = licenses.mit;
37     maintainers = with maintainers; [ GaetanLepage ];
38   };