Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 19.03 23 lines 451 B view raw
1{ lib 2, buildPythonPackage 3, fetchPypi 4}: 5 6buildPythonPackage rec { 7 pname = "jsonpickle"; 8 version = "1.1"; 9 10 src = fetchPypi { 11 inherit pname version; 12 sha256 = "625098cc8e5854b8c23b587aec33bc8e33e0e597636bfaca76152249c78fe5c1"; 13 }; 14 15 doCheck = false; 16 17 meta = { 18 description = "Python library for serializing any arbitrary object graph into JSON"; 19 homepage = http://jsonpickle.github.io/; 20 license = lib.licenses.bsd3; 21 }; 22 23}