1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-14 16:46:09 +00:00
nixpkgs/pkgs/development/python-modules/ujson/default.nix
2018-10-30 00:51:07 -04:00

24 lines
447 B
Nix

{ stdenv
, buildPythonPackage
, fetchPypi
, isPyPy
}:
buildPythonPackage rec {
pname = "ujson";
version = "1.35";
disabled = isPyPy;
src = fetchPypi {
inherit pname version;
sha256 = "11jz5wi7mbgqcsz52iqhpyykiaasila4lq8cmc2d54bfa3jp6q7n";
};
meta = with stdenv.lib; {
homepage = https://pypi.python.org/pypi/ujson;
description = "Ultra fast JSON encoder and decoder for Python";
license = licenses.bsd3;
};
}