Merge pull request #43631 from aepsil0n/parsy/init

pythonPackages.parsy: init at 1.2.0
This commit is contained in:
Robert Schütz 2018-07-17 00:35:34 +02:00 committed by GitHub
commit ac7d8d22d2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 33 additions and 0 deletions

View file

@ -93,6 +93,11 @@
github = "adolfogc";
name = "Adolfo E. García Castro";
};
aepsil0n = {
email = "eduard.bopp@aepsil0n.de";
github = "aepsil0n";
name = "Eduard Bopp";
};
aespinosa = {
email = "allan.espinosa@outlook.com";
github = "aespinosa";

View file

@ -0,0 +1,26 @@
{ lib, buildPythonPackage, fetchPypi, pythonOlder, pytest }:
buildPythonPackage rec {
pname = "parsy";
version = "1.2.0";
src = fetchPypi {
inherit pname version;
sha256 = "0mdqg07x5ybmbmj55x75gyhfcjrn7ml0cf3z0jwbskx845j31m6x";
};
checkInputs = [ pytest ];
checkPhase = ''
py.test test/
'';
disabled = pythonOlder "3.4";
meta = with lib; {
homepage = https://github.com/python-parsy/parsy;
description = "Easy-to-use parser combinators, for parsing in pure Python";
license = [ licenses.mit ];
maintainers = with maintainers; [ aepsil0n ];
};
}

View file

@ -1882,6 +1882,8 @@ in {
'';
};
parsy = callPackage ../development/python-modules/parsy { };
portpicker = callPackage ../development/python-modules/portpicker { };
pkginfo = callPackage ../development/python-modules/pkginfo { };