python3Packages.cson: init at 0.8
This commit is contained in:
parent
dc5888be97
commit
c44ab108b2
2 changed files with 28 additions and 0 deletions
26
pkgs/development/python-modules/cson/default.nix
Normal file
26
pkgs/development/python-modules/cson/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
|
@ -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 { };
|
||||
|
|
Loading…
Reference in a new issue