nixpkgs/pkgs/development/python-modules/ujson/default.nix

37 lines
692 B
Nix
Raw Normal View History

{ lib
, buildPythonPackage
, fetchPypi
, isPyPy
2021-08-18 12:51:32 +01:00
, pytestCheckHook
, pythonOlder
, setuptools-scm
}:
buildPythonPackage rec {
pname = "ujson";
2021-10-08 23:23:18 +01:00
version = "4.2.0";
2021-08-18 12:51:32 +01:00
disabled = isPyPy || pythonOlder "3.5";
src = fetchPypi {
inherit pname version;
2021-10-08 23:23:18 +01:00
sha256 = "fffe509f556861c7343c6cba57ed05fe7bcf4b48a934a5b946ccb45428cf8883";
};
2021-08-18 12:51:32 +01:00
nativeBuildInputs = [
setuptools-scm
];
checkInputs = [
pytestCheckHook
];
pythonImportsCheck = [ "ujson" ];
meta = with lib; {
description = "Ultra fast JSON encoder and decoder for Python";
2021-08-18 12:51:32 +01:00
homepage = "https://pypi.python.org/pypi/ujson";
license = licenses.bsd3;
2021-08-18 12:51:32 +01:00
maintainers = with maintainers; [ ];
};
}