pythonPackages.pyparsing: 2.1.10 -> 2.2.0
This commit is contained in:
parent
f7179c0474
commit
9bb9d93ee7
20
pkgs/development/python-modules/pyparsing/default.nix
Normal file
20
pkgs/development/python-modules/pyparsing/default.nix
Normal file
@ -0,0 +1,20 @@
|
||||
{ stdenv, buildPythonPackage, fetchPypi }:
|
||||
buildPythonPackage rec {
|
||||
pname = "pyparsing";
|
||||
name = "${pname}-${version}";
|
||||
version = "2.2.0";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "016b9gh606aa44sq92jslm89bg874ia0yyiyb643fa6dgbsbqch8";
|
||||
};
|
||||
|
||||
# Not everything necessary to run the tests is included in the distribution
|
||||
doCheck = false;
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = http://pyparsing.wikispaces.com/;
|
||||
description = "An alternative approach to creating and executing simple grammars, vs. the traditional lex/yacc approach, or the use of regular expressions";
|
||||
license = licenses.mit;
|
||||
};
|
||||
}
|
@ -19293,23 +19293,7 @@ in {
|
||||
};
|
||||
};
|
||||
|
||||
pyparsing = buildPythonPackage rec {
|
||||
name = "pyparsing-${version}";
|
||||
version = "2.1.10";
|
||||
|
||||
src = pkgs.fetchurl {
|
||||
url = "mirror://pypi/p/pyparsing/${name}.tar.gz";
|
||||
sha256 = "811c3e7b0031021137fc83e051795025fcb98674d07eb8fe922ba4de53d39188";
|
||||
};
|
||||
|
||||
# Not everything necessary to run the tests is included in the distribution
|
||||
doCheck = false;
|
||||
|
||||
meta = {
|
||||
homepage = http://pyparsing.wikispaces.com/;
|
||||
description = "An alternative approach to creating and executing simple grammars, vs. the traditional lex/yacc approach, or the use of regular expressions";
|
||||
};
|
||||
};
|
||||
pyparsing = callPackage ../development/python-modules/pyparsing { };
|
||||
|
||||
pyparted = buildPythonPackage rec {
|
||||
name = "pyparted-${version}";
|
||||
|
Loading…
Reference in New Issue
Block a user