python3Packages.slpp: init at 1.2.3

This commit is contained in:
Pavel Sobolev
2023-10-07 11:12:06 +03:00
parent 7e5e43ef91
commit bca854ce75
2 changed files with 43 additions and 0 deletions
@@ -0,0 +1,41 @@
{ lib
, buildPythonPackage
, fetchPypi
, setuptools
, six
}:
buildPythonPackage rec {
pname = "slpp";
version = "1.2.3";
pyproject = true;
src = fetchPypi {
pname = "SLPP";
inherit version;
hash = "sha256-If3ZMoNICQxxpdMnc+juaKq4rX7MMi9eDMAQEUy1Scg=";
};
nativeBuildInputs = [
setuptools
];
propagatedBuildInputs = [
six
];
# No tests
doCheck = false;
pythonImportsCheck = [
"slpp"
];
meta = with lib; {
description = "Simple lua-python parser";
homepage = "https://github.com/SirAnthony/slpp";
license = licenses.mit;
maintainers = with maintainers; [ paveloom ];
};
}
+2
View File
@@ -12043,6 +12043,8 @@ self: super: with self; {
slowapi = callPackage ../development/python-modules/slowapi { };
slpp = callPackage ../development/python-modules/slpp { };
slugid = callPackage ../development/python-modules/slugid { };
sly = callPackage ../development/python-modules/sly { };