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

30 lines
602 B
Nix
Raw Normal View History

{ lib
, buildPythonPackage
, fetchPypi
, pytest
, pythonOlder
}:
buildPythonPackage rec {
pname = "sly";
2020-04-02 00:26:11 +01:00
version = "0.4";
disabled = pythonOlder "3.6";
src = fetchPypi {
inherit pname version;
2020-04-02 00:26:11 +01:00
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";
2020-04-02 00:26:11 +01:00
homepage = "https://github.com/dabeaz/sly";
license = licenses.bsd3;
maintainers = [ maintainers.costrouc ];
};
}