summary refs log tree commit diff
path: root/pkgs/development/python-modules/slpp/default.nix
blob: d52ac84dad7a48881ed716c8451ee1a005aeb355 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
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 ];
  };
}