1{ stdenv, buildPythonPackage, fetchPypi, isPy36 }: 2 3buildPythonPackage rec { 4 pname = "demjson"; 5 version = "2.2.4"; 6 disabled = isPy36; 7 8 src = fetchPypi { 9 inherit pname version; 10 sha256 = "0ygbddpnvp5lby6mr5kz60la3hkvwwzv3wwb3z0w9ngxl0w21pii"; 11 }; 12 13 meta = with stdenv.lib; { 14 description = "Encoder/decoder and lint/validator for JSON (JavaScript Object Notation)"; 15 homepage = http://deron.meranda.us/python/demjson/; 16 license = licenses.lgpl3Plus; 17 maintainers = with maintainers; [ bjornfor ]; 18 platforms = platforms.all; 19 }; 20}