python3Packages.lupa: init at 1.9

This commit is contained in:
Fabian Affolter 2021-03-09 00:22:28 +01:00
parent 39677da7a6
commit 28c9c88fe1
2 changed files with 28 additions and 0 deletions

View file

@ -0,0 +1,26 @@
{ lib
, buildPythonPackage
, cython
, fetchPypi
}:
buildPythonPackage rec {
pname = "lupa";
version = "1.9";
src = fetchPypi {
inherit pname version;
sha256 = "13ifv0nxbf70xg69sp49j484m8cnid7rgh8f94pgfb50dj01vqd3";
};
nativeBuildInputs = [ cython ];
pythonImportsCheck = [ "lupa" ];
meta = with lib; {
description = "Lua in Python";
homepage = "https://github.com/scoder/lupa";
license = with licenses; [ mit ];
maintainers = with maintainers; [ fab ];
};
}

View file

@ -3927,6 +3927,8 @@ in {
luftdaten = callPackage ../development/python-modules/luftdaten { };
lupa = callPackage ../development/python-modules/lupa { };
lxc = callPackage ../development/python-modules/lxc { };
lxml = callPackage ../development/python-modules/lxml { inherit (pkgs) libxml2 libxslt zlib; };