biome: 1.9.2 -> 1.9.3 (#349335)
[NixPkgs.git] / pkgs / development / python-modules / pymeta3 / default.nix
blobba5c244ea49bdc902f08dbad96b5c60fe40a0a56
2   buildPythonPackage,
3   fetchPypi,
4   lib,
5 }:
6 buildPythonPackage rec {
7   pname = "pymeta3";
8   version = "0.5.1";
9   format = "setuptools";
11   src = fetchPypi {
12     inherit version;
13     pname = "PyMeta3";
14     hash = "sha256-GL2jJtmpu/WHv8DuC8loZJZNeLBnKIvPVdTZhoHQW8s=";
15   };
17   doCheck = false; # Tests do not support Python3
19   pythonImportsCheck = [ "pymeta" ];
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   };