about summary refs log tree commit diff
path: root/pkgs/development/python-modules/spark_parser
diff options
context:
space:
mode:
authorBen Siraphob <bensiraphob@gmail.com>2021-01-16 11:20:42 +0700
committerBen Siraphob <bensiraphob@gmail.com>2021-01-16 11:29:30 +0700
commit8dd78bb4fbb51227c3bf3547add972c175e83ba9 (patch)
treecde2aa2d215523d435671893f16d92d3a9e0eec7 /pkgs/development/python-modules/spark_parser
parentb3616bd96400ce0252c241d76fcafb64389defc6 (diff)
treewide: fix double quoted strings in meta.description
Diffstat (limited to 'pkgs/development/python-modules/spark_parser')
-rw-r--r--pkgs/development/python-modules/spark_parser/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/development/python-modules/spark_parser/default.nix b/pkgs/development/python-modules/spark_parser/default.nix
index cfb641ddcfb59..ba927431f2c0e 100644
--- a/pkgs/development/python-modules/spark_parser/default.nix
+++ b/pkgs/development/python-modules/spark_parser/default.nix
@@ -18,7 +18,7 @@ buildPythonPackage rec {
   propagatedBuildInputs = [ click ];
 
   meta = with lib; {
-    description = ''An Early-Algorithm Context-free grammar Parser'';
+    description = "An Early-Algorithm Context-free grammar Parser";
     homepage = "https://github.com/rocky/python-spark";
     license = licenses.mit;
     maintainers = with maintainers; [raskin];