Files
nixpkgs/pkgs/development/python-modules/slpp/default.nix
Jörg Thalheim 5356420466 treewide: remove unused with statements from maintainer lists
$ find -type f -name '*.nix' -print0 | xargs -P "$(nproc)" -0 sed -i \
  -e 's!with lib.maintainers; \[ *\];![ ];!' \
  -e 's!with maintainers; \[ *\];![ ];!'
2024-07-29 10:06:20 +08:00

37 lines
610 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 = [ ];
};
}