mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 15:56:50 +01:00
pypeg2: init at 2.15.1
This commit is contained in:
parent
a73d25d6c2
commit
d9085b845e
1 changed files with 16 additions and 0 deletions
|
@ -16043,5 +16043,21 @@ let
|
|||
};
|
||||
};
|
||||
|
||||
pypeg2 = buildPythonPackage rec {
|
||||
version = "2.15.1";
|
||||
name = "pypeg2-${version}";
|
||||
|
||||
src = pkgs.fetchurl {
|
||||
url = "https://pypi.python.org/packages/source/p/pyPEG2/pyPEG2-${version}.tar.gz";
|
||||
sha256 = "f4814a5f9c84bbb0794bef8d2a5871f4aed25366791c55e2162681873ad8bd21";
|
||||
};
|
||||
|
||||
meta = {
|
||||
description = "PEG parser interpreter in Python";
|
||||
homepage = http://fdik.org/pyPEG;
|
||||
license = licenses.gpl2;
|
||||
};
|
||||
};
|
||||
|
||||
|
||||
}; in pythonPackages
|
||||
|
|
Loading…
Reference in a new issue