python310Packages.pymeta3,python311Packages.pymeta3: init at 0.5.1

Co-authored-by: Rohit <rohitsutradhar311@gmail.com>
Co-authored-by: Jeremy Fleischman <jeremyfleischman@gmail.com>
Co-authored-by: Shahar "Dawn" Or <mightyiampresence@gmail.com>
Co-authored-by: Alejandro Sanchez Medina <alejandrosanchzmedina@gmail.com>
Co-authored-by: Matúš Ferech <matus.ferech@gmail.com>
This commit is contained in:
Jeremy Fleischman
2023-11-16 21:24:04 +07:00
committed by Shahar "Dawn" Or
co-authored by Rohit Shahar Dawn Or Alejandro Sanchez Medina Matúš Ferech
parent 82056f0fc3
commit 1f37289ea1
2 changed files with 31 additions and 0 deletions
@@ -0,0 +1,29 @@
{ 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
View File
@@ -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 { };