Files
nixpkgs/pkgs/development/python-modules/spark_parser/default.nix
R. RyanTM 9e342a7c04 python37Packages.spark_parser: 1.8.7 -> 1.8.9
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/python3.7-spark_parser/versions
2019-08-20 14:05:55 -07:00

28 lines
556 B
Nix

{ stdenv
, buildPythonPackage
, fetchPypi
, nose
, click
}:
buildPythonPackage rec {
pname = "spark_parser";
version = "1.8.9";
src = fetchPypi {
inherit pname version;
sha256 = "0np2y4jcir4a4j18wws7yzkz2zj6nqhdhn41rpq8pyskg6wrgfx7";
};
buildInputs = [ nose ];
propagatedBuildInputs = [ click ];
meta = with stdenv.lib; {
description = ''An Early-Algorithm Context-free grammar Parser'';
homepage = "https://github.com/rocky/python-spark";
license = licenses.mit;
maintainers = with maintainers; [raskin];
};
}