My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/sly/default.nix

29 lines
602 B

{ lib
, buildPythonPackage
, fetchPypi
, pytest
, pythonOlder
}:
buildPythonPackage rec {
pname = "sly";
version = "0.4";
disabled = pythonOlder "3.6";
src = fetchPypi {
inherit pname version;
sha256 = "0an31bm5m8wqwphanmcsbbnmycy6l4xkmg4za4bwq8hk4dm2dwp5";
};
checkInputs = [ pytest ];
# tests not included with pypi release
doCheck = false;
meta = with lib; {
description = "An improved PLY implementation of lex and yacc for Python 3";
homepage = "https://github.com/dabeaz/sly";
license = licenses.bsd3;
maintainers = [ maintainers.costrouc ];
};
}