mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-12 03:56:17 +03:00
pythonPackages.spark_parser: 1.4.0 -> 1.8.7
This commit is contained in:
parent
5aed95f8b4
commit
4182bba9fe
27
pkgs/development/python-modules/spark_parser/default.nix
Normal file
27
pkgs/development/python-modules/spark_parser/default.nix
Normal file
@ -0,0 +1,27 @@
|
||||
{ stdenv
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, nose
|
||||
, click
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "spark_parser";
|
||||
version = "1.8.7";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "4c5e6064afbb3c114749016d585b0e4f9222d4ffa97a1854c9ab70b25783ef48";
|
||||
};
|
||||
|
||||
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];
|
||||
};
|
||||
|
||||
}
|
@ -6835,24 +6835,7 @@ in {
|
||||
|
||||
subprocess32 = callPackage ../development/python-modules/subprocess32 { };
|
||||
|
||||
spark_parser = buildPythonPackage (rec {
|
||||
name = "${pname}-${version}";
|
||||
pname = "spark_parser";
|
||||
version = "1.4.0";
|
||||
src = pkgs.fetchurl {
|
||||
url = "mirror://pypi/s/${pname}/${name}.tar.gz";
|
||||
sha256 = "1r7d07kw4asgajvhq1gzln4g1qi2r13jw0s8c7d5z3g4kp8y0br8";
|
||||
};
|
||||
buildInputs = with self; [nose];
|
||||
propagatedBuildInputs = [];
|
||||
meta = {
|
||||
description = ''An Early-Algorithm Context-free grammar Parser'';
|
||||
homepage = "https://github.com/rocky/python-spark";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [raskin];
|
||||
platforms = platforms.all;
|
||||
};
|
||||
});
|
||||
spark_parser = callPackage ../development/python-modules/spark_parser { };
|
||||
|
||||
sphinx = callPackage ../development/python-modules/sphinx { };
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user