depot/third_party/nixpkgs/pkgs/development/python-modules/ujson/2.nix
Default email ae91cbe6cc Project import generated by Copybara.
GitOrigin-RevId: 536fe36e23ab0fc8b7f35c24603422eee9fc17a2
2021-02-05 18:12:51 +01:00

28 lines
531 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, setuptools_scm
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "ujson";
version = "2.0.3";
src = fetchPypi {
inherit pname version;
sha256 = "18z9gb9ggy1r464b9q1gqs078mqgrkj6dys5a47529rqk3yfybdx";
};
nativeBuildInputs = [ setuptools_scm ];
checkInputs = [
pytestCheckHook
];
meta = with lib; {
homepage = "https://pypi.python.org/pypi/ujson";
description = "Ultra fast JSON encoder and decoder for Python";
license = licenses.bsd3;
};
}