Commit 1f37289e authored by Jeremy Fleischman's avatar Jeremy Fleischman Committed by Shahar "Dawn" Or
Browse files

python310Packages.pymeta3,python311Packages.pymeta3: init at 0.5.1

parent 82056f0f
Loading
Loading
Loading
Loading
+29 −0
Original line number Diff line number Diff line
{ buildPythonPackage
, fetchPypi
, lib
}:
buildPythonPackage rec {
  pname = "pymeta3";
  version = "0.5.1";
  format = "setuptools";

  src = fetchPypi {
    inherit version;
    pname = "PyMeta3";
    hash = "sha256-GL2jJtmpu/WHv8DuC8loZJZNeLBnKIvPVdTZhoHQW8s=";
  };

  doCheck = false; # Tests do not support Python3

  pythonImportsCheck = [
    "pymeta"
  ];

  meta = with lib; {
    description = "Pattern-matching language based on OMeta for Python 3 and 2";
    homepage = "https://github.com/wbond/pymeta3";
    changelog = "https://github.com/wbond/pymeta3/releases/tag/${version}";
    license = licenses.mit;
    maintainers = with maintainers; [ jfly matusf ];
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -9015,6 +9015,8 @@ self: super: with self; {
  pybars3 = callPackage ../development/python-modules/pybars3 { };
  pymeta3 = callPackage ../development/python-modules/pymeta3 { };
  pypemicro = callPackage ../development/python-modules/pypemicro { };
  pyprecice = callPackage ../development/python-modules/pyprecice { };