2018-07-16 20:23:18 +02:00
|
|
|
{ lib, buildPythonPackage, fetchPypi, pythonOlder, pytest }:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "parsy";
|
2019-10-24 08:47:41 +02:00
|
|
|
version = "1.3.0";
|
2018-07-16 20:23:18 +02:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2019-10-24 08:47:41 +02:00
|
|
|
sha256 = "bfc941ea5a69e6ac16bd4f7d9f807bbc17e35edd8b95bcd2499a25b059359012";
|
2018-07-16 20:23:18 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
checkInputs = [ pytest ];
|
|
|
|
|
|
|
|
checkPhase = ''
|
|
|
|
py.test test/
|
|
|
|
'';
|
|
|
|
|
|
|
|
disabled = pythonOlder "3.4";
|
|
|
|
|
|
|
|
meta = with lib; {
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "https://github.com/python-parsy/parsy";
|
2018-07-16 20:23:18 +02:00
|
|
|
description = "Easy-to-use parser combinators, for parsing in pure Python";
|
|
|
|
license = [ licenses.mit ];
|
|
|
|
maintainers = with maintainers; [ aepsil0n ];
|
|
|
|
};
|
|
|
|
}
|