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