Skip to content

Commit

Permalink
Merge pull request #330001 from Sigmanificient/spark-parser
Browse files Browse the repository at this point in the history
python312Packages.spark-parser: drop nose dependency
  • Loading branch information
7c6f434c authored Jul 26, 2024
2 parents c9b408e + 1e95e95 commit 16baf63
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions pkgs/development/python-modules/spark-parser/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
lib,
buildPythonPackage,
fetchPypi,
nose,
unittestCheckHook,
click,
}:

Expand All @@ -17,9 +17,15 @@ buildPythonPackage rec {
sha256 = "0np2y4jcir4a4j18wws7yzkz2zj6nqhdhn41rpq8pyskg6wrgfx7";
};

buildInputs = [ nose ];
propagatedBuildInputs = [ click ];

nativeCheckInputs = [ unittestCheckHook ];
unittestFlagsArray = [
"-s"
"test"
"-v"
];

meta = with lib; {
description = "Early-Algorithm Context-free grammar Parser";
mainProgram = "spark-parser-coverage";
Expand Down

0 comments on commit 16baf63

Please sign in to comment.