at master 698 B view raw
1{ 2 buildPythonPackage, 3 fetchPypi, 4 lib, 5}: 6buildPythonPackage rec { 7 pname = "pymeta3"; 8 version = "0.5.1"; 9 format = "setuptools"; 10 11 src = fetchPypi { 12 inherit version; 13 pname = "PyMeta3"; 14 hash = "sha256-GL2jJtmpu/WHv8DuC8loZJZNeLBnKIvPVdTZhoHQW8s="; 15 }; 16 17 doCheck = false; # Tests do not support Python3 18 19 pythonImportsCheck = [ "pymeta" ]; 20 21 meta = with lib; { 22 description = "Pattern-matching language based on OMeta for Python 3 and 2"; 23 homepage = "https://github.com/wbond/pymeta3"; 24 changelog = "https://github.com/wbond/pymeta3/releases/tag/${version}"; 25 license = licenses.mit; 26 maintainers = with maintainers; [ 27 jfly 28 matusf 29 ]; 30 }; 31}