nixpkgs/pkgs/development/python-modules/cson/default.nix
Alexis Hildebrandt 755b915a15 treewide: Remove indefinite article from meta.description
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \
  | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
2024-06-09 23:07:45 +02:00

29 lines
582 B
Nix

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