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

28 lines
544 B
Nix
Raw Normal View History

{ stdenv
, buildPythonPackage
, fetchPypi
, isPy3k
, isPyPy
, setuptools_scm
}:
buildPythonPackage rec {
pname = "ujson";
2020-08-16 18:31:19 +01:00
version = "3.1.0";
disabled = isPyPy || (!isPy3k);
src = fetchPypi {
inherit pname version;
2020-08-16 18:31:19 +01:00
sha256 = "00bda1de275ed6fe81817902189c75dfd156b4fa29b44dc1f4620775d2f50cf7";
};
nativeBuildInputs = [ setuptools_scm ];
meta = with stdenv.lib; {
homepage = "https://pypi.python.org/pypi/ujson";
description = "Ultra fast JSON encoder and decoder for Python";
license = licenses.bsd3;
};
}