at 23.11-beta 553 B view raw
1{ lib 2, buildPythonPackage 3, fetchPypi 4, speg 5}: 6 7buildPythonPackage rec { 8 pname = "cson"; 9 version = "0.8"; 10 11 src = fetchPypi { 12 inherit pname version; 13 hash = "sha256-7owBZvzR9ReJiHGX4+g1Sse++jlvwpcGvOta8l7cngE="; 14 }; 15 16 propagatedBuildInputs = [ speg ]; 17 18 pythonImportsCheck = [ "cson" ]; 19 20 meta = with lib; { 21 description = "A python parser for the Coffeescript Object Notation (CSON)"; 22 homepage = "https://github.com/avakar/pycson"; 23 license = with licenses; [ mit ]; 24 maintainers = with maintainers; [ xworld21 ]; 25 }; 26}