Files
nixpkgs/pkgs/development/python-modules/cson/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

29 lines
582 B
Nix
Raw Normal View History

2025-10-09 14:15:47 +02:00
{
lib,
buildPythonPackage,
fetchPypi,
speg,
}:
buildPythonPackage rec {
pname = "cson";
version = "0.8";
format = "setuptools";
src = fetchPypi {
inherit pname version;
hash = "sha256-7owBZvzR9ReJiHGX4+g1Sse++jlvwpcGvOta8l7cngE=";
};
propagatedBuildInputs = [ speg ];
pythonImportsCheck = [ "cson" ];
meta = with lib; {
description = "Python parser for the Coffeescript Object Notation (CSON)";
homepage = "https://github.com/avakar/pycson";
license = with licenses; [ mit ];
maintainers = with maintainers; [ xworld21 ];
};
}