mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 16:33:15 +00:00
pythonPackages.pyparsing: improve tests
- Fetch pyparsing from GitHub instead of PyPi - Add tests
This commit is contained in:
parent
0881ee4c62
commit
cdfb32d17a
@ -1,19 +1,35 @@
|
||||
{ stdenv, buildPythonPackage, fetchPypi }:
|
||||
{ buildPythonPackage
|
||||
, fetchFromGitHub
|
||||
, lib
|
||||
|
||||
# pythonPackages
|
||||
, coverage
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "pyparsing";
|
||||
version = "2.4.6";
|
||||
pname = "pyparsing";
|
||||
version = "2.4.6";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "4c830582a84fb022400b85429791bc551f1f4871c33f23e44f353119e92f969f";
|
||||
};
|
||||
src = fetchFromGitHub {
|
||||
owner = "pyparsing";
|
||||
repo = pname;
|
||||
rev = "pyparsing_${version}";
|
||||
sha256 = "1fh7s3cfr274pd6hh6zygl99842rqws98an2nkrrqj2spb9ldxcm";
|
||||
};
|
||||
|
||||
# Not everything necessary to run the tests is included in the distribution
|
||||
doCheck = false;
|
||||
# https://github.com/pyparsing/pyparsing/blob/847af590154743bae61a32c3dc1a6c2a19009f42/tox.ini#L6
|
||||
checkInputs = [ coverage ];
|
||||
checkPhase = ''
|
||||
coverage run --branch simple_unit_tests.py
|
||||
coverage run --branch unitTests.py
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = https://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;
|
||||
};
|
||||
meta = with lib; {
|
||||
homepage = "https://github.com/pyparsing/pyparsing";
|
||||
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;
|
||||
maintainers = with maintainers; [
|
||||
kamadorueda
|
||||
];
|
||||
};
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user