Merge pull request #257442 from paveloom/slpp

python3Packages.slpp: init at 1.2.3
This commit is contained in:
OTABI Tomoya 2023-10-23 00:28:17 +09:00 committed by GitHub
commit 2defe1ab4f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 43 additions and 0 deletions

View file

@ -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 ];
};
}

View file

@ -12940,6 +12940,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 { };