nixpkgs/pkgs/development/python-modules/parsy/default.nix

27 lines
612 B
Nix
Raw Normal View History

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; {
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; [ edibopp ];
2018-07-16 20:23:18 +02:00
};
}