23b612e36f
GitOrigin-RevId: ae5c332cbb5827f6b1f02572496b141021de335f
41 lines
639 B
Nix
41 lines
639 B
Nix
{ 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; [ ];
|
|
};
|
|
}
|