biome: 1.9.2 -> 1.9.3 (#349335)
[NixPkgs.git] / pkgs / development / python-modules / mujson / default.nix
blob6d980fd74f49563c9d4f7a03efed5916170f6bd1
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5 }:
7 buildPythonPackage rec {
8   pname = "mujson";
9   version = "1.4";
10   format = "setuptools";
12   src = fetchPypi {
13     inherit pname version;
14     hash = "sha256-J9nPGxDkLQje6AkL9cewNqmQ7Z+00TXBEr3p71E2cnE=";
15   };
17   # LICENSE file missing from src
18   # https://github.com/mattgiles/mujson/issues/8
19   postPatch = ''
20     substituteInPlace setup.cfg \
21       --replace "license_file = LICENSE" ""
22   '';
24   # No tests
25   doCheck = false;
26   pythonImportsCheck = [ "mujson" ];
28   meta = with lib; {
29     description = "Use the fastest JSON functions available at import time";
30     homepage = "https://github.com/mattgiles/mujson";
31     license = licenses.mit;
32     maintainers = with maintainers; [ artturin ];
33   };