2018-04-21 09:46:44 -07:00
|
|
|
{ stdenv, buildPythonPackage, fetchPypi
|
2020-08-17 11:39:37 -07:00
|
|
|
, frozendict, simplejson, six, isPy27
|
2018-04-21 09:46:44 -07:00
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "canonicaljson";
|
2020-08-16 10:30:54 -07:00
|
|
|
version = "1.3.0";
|
2020-08-17 11:39:37 -07:00
|
|
|
disabled = isPy27;
|
2018-04-21 09:46:44 -07:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2020-08-16 10:30:54 -07:00
|
|
|
sha256 = "b4763db06a2e8553293c5edaa4bda05605c3307179a7ddfb30273a24ac384b6c";
|
2018-04-21 09:46:44 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
propagatedBuildInputs = [
|
|
|
|
frozendict simplejson six
|
|
|
|
];
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "https://github.com/matrix-org/python-canonicaljson";
|
2018-04-21 09:46:44 -07:00
|
|
|
description = "Encodes objects and arrays as RFC 7159 JSON.";
|
|
|
|
license = licenses.asl20;
|
|
|
|
};
|
|
|
|
}
|