python3Packages.cson: init at 0.8

This commit is contained in:
Vincenzo Mantova 2023-06-26 22:09:19 +01:00
parent dc5888be97
commit c44ab108b2
2 changed files with 28 additions and 0 deletions

View file

@ -0,0 +1,26 @@
{ 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 ];
};
}

View file

@ -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 { };