Commit c44ab108 authored by Vincenzo Mantova's avatar Vincenzo Mantova
Browse files

python3Packages.cson: init at 0.8

parent dc5888be
Loading
Loading
Loading
Loading
+26 −0
Original line number Diff line number Diff line
{ lib
, buildPythonPackage
, fetchPypi
, speg
}:

buildPythonPackage rec {
  pname = "cson";
  version = "0.8";

  src = fetchPypi {
    inherit pname version;
    hash = "sha256-7owBZvzR9ReJiHGX4+g1Sse++jlvwpcGvOta8l7cngE=";
  };

  propagatedBuildInputs = [ speg ];

  pythonImportChecks = [ "cson" ];

  meta = with lib; {
    description = "A python parser for the Coffeescript Object Notation (CSON)";
    homepage = "https://github.com/avakar/pycson";
    license = with licenses; [ mit ];
    maintainers = with maintainers; [ xworld21 ];
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -2199,6 +2199,8 @@ self: super: with self; {

  crytic-compile = callPackage ../development/python-modules/crytic-compile { };

  cson  = callPackage ../development/python-modules/cson { };

  csrmesh  = callPackage ../development/python-modules/csrmesh { };

  csscompressor = callPackage ../development/python-modules/csscompressor { };