pythonPackages.cpyparsing: init at 2.4.5.0.1.1
This commit is contained in:
parent
ebed0a25dd
commit
4408345c9c
24
pkgs/development/python-modules/cpyparsing/default.nix
Normal file
24
pkgs/development/python-modules/cpyparsing/default.nix
Normal file
@ -0,0 +1,24 @@
|
||||
{ lib, buildPythonPackage, fetchFromGitHub, cython, python }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "cpyparsing";
|
||||
version = "2.4.5.0.1.1";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "evhub";
|
||||
repo = pname;
|
||||
rev = "aa8ee45daec5c55328446bad7202ab8f799ab0ce"; # No tags on repo
|
||||
sha256 = "1mxa5q41cb0k4lkibs0d4lzh1w6kmhhdrsm0w0r1m3s80m05ffmw";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ cython ];
|
||||
|
||||
checkPhase = "${python.interpreter} tests/cPyparsing_test.py";
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "https://github.com/evhub/cpyparsing";
|
||||
description = "Cython PyParsing implementation";
|
||||
license = licenses.asl20;
|
||||
maintainers = with maintainers; [ fabianhjr ];
|
||||
};
|
||||
}
|
@ -1351,6 +1351,8 @@ in {
|
||||
|
||||
cppy = callPackage ../development/python-modules/cppy { };
|
||||
|
||||
cpyparsing = callPackage ../development/python-modules/cpyparsing { };
|
||||
|
||||
cram = callPackage ../development/python-modules/cram { };
|
||||
|
||||
crashtest = callPackage ../development/python-modules/crashtest { };
|
||||
|
Loading…
Reference in New Issue
Block a user