ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / mujson / default.nix
blob10f0e40b762680b9bf66fd0c1e500bfb30add1f1
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 }:
6 buildPythonPackage rec {
7   pname = "mujson";
8   version = "1.4";
10   src = fetchPypi {
11     inherit pname version;
12     sha256 = "sha256-J9nPGxDkLQje6AkL9cewNqmQ7Z+00TXBEr3p71E2cnE=";
13   };
15   # LICENSE file missing from src
16   # https://github.com/mattgiles/mujson/issues/8
17   postPatch = ''
18     substituteInPlace setup.cfg \
19       --replace "license_file = LICENSE" ""
20   '';
22   # No tests
23   doCheck = false;
24   pythonImportsCheck = [ "mujson" ];
26   meta = with lib; {
27     description = "Use the fastest JSON functions available at import time";
28     homepage = "https://github.com/mattgiles/mujson";
29     license = licenses.mit;
30     maintainers = with maintainers; [ artturin ];
31   };