1{
2 lib,
3 buildPythonPackage,
4 fetchPypi,
5
6 setuptools,
7 six,
8}:
9
10buildPythonPackage rec {
11 pname = "slpp";
12 version = "1.2.3";
13 pyproject = true;
14
15 src = fetchPypi {
16 pname = "SLPP";
17 inherit version;
18 hash = "sha256-If3ZMoNICQxxpdMnc+juaKq4rX7MMi9eDMAQEUy1Scg=";
19 };
20
21 nativeBuildInputs = [ setuptools ];
22
23 propagatedBuildInputs = [ six ];
24
25 # No tests
26 doCheck = false;
27
28 pythonImportsCheck = [ "slpp" ];
29
30 meta = with lib; {
31 description = "Simple lua-python parser";
32 homepage = "https://github.com/SirAnthony/slpp";
33 license = licenses.mit;
34 maintainers = [ ];
35 };
36}