Merge pull request #257442 from paveloom/slpp
python3Packages.slpp: init at 1.2.3
This commit is contained in:
commit
2defe1ab4f
2 changed files with 43 additions and 0 deletions
41
pkgs/development/python-modules/slpp/default.nix
Normal file
41
pkgs/development/python-modules/slpp/default.nix
Normal 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 ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -12940,6 +12940,8 @@ self: super: with self; {
|
||||||
|
|
||||||
slowapi = callPackage ../development/python-modules/slowapi { };
|
slowapi = callPackage ../development/python-modules/slowapi { };
|
||||||
|
|
||||||
|
slpp = callPackage ../development/python-modules/slpp { };
|
||||||
|
|
||||||
slugid = callPackage ../development/python-modules/slugid { };
|
slugid = callPackage ../development/python-modules/slugid { };
|
||||||
|
|
||||||
sly = callPackage ../development/python-modules/sly { };
|
sly = callPackage ../development/python-modules/sly { };
|
||||||
|
|
Loading…
Reference in a new issue