python37Packages.sly: 0.3 -> 0.4

This commit is contained in:
R. RyanTM 2020-04-01 23:26:11 +00:00 committed by Jon
parent df003491d7
commit d42b7f6e7d

View File

@ -7,12 +7,12 @@
buildPythonPackage rec { buildPythonPackage rec {
pname = "sly"; pname = "sly";
version = "0.3"; version = "0.4";
disabled = pythonOlder "3.6"; disabled = pythonOlder "3.6";
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;
sha256 = "be6a3825b042a9e1b6f5730fc747e6d983c917f0f002d798d0b9f86ca5c05ad9"; sha256 = "0an31bm5m8wqwphanmcsbbnmycy6l4xkmg4za4bwq8hk4dm2dwp5";
}; };
checkInputs = [ pytest ]; checkInputs = [ pytest ];
@ -22,7 +22,7 @@ buildPythonPackage rec {
meta = with lib; { meta = with lib; {
description = "An improved PLY implementation of lex and yacc for Python 3"; description = "An improved PLY implementation of lex and yacc for Python 3";
homepage = https://github.com/dabeaz/sly; homepage = "https://github.com/dabeaz/sly";
license = licenses.bsd3; license = licenses.bsd3;
maintainers = [ maintainers.costrouc ]; maintainers = [ maintainers.costrouc ];
}; };