Merge pull request #119126 from fabaff/pycomfoconnect
[NixPkgs.git] / pkgs / development / python-modules / lupa / default.nix
blobe50404e50472539302036f4863cf3e30de06707d
1 { lib
2 , buildPythonPackage
3 , cython
4 , fetchPypi
5 }:
7 buildPythonPackage rec {
8   pname = "lupa";
9   version = "1.9";
11   src = fetchPypi {
12     inherit pname version;
13     sha256 = "13ifv0nxbf70xg69sp49j484m8cnid7rgh8f94pgfb50dj01vqd3";
14   };
16   nativeBuildInputs = [ cython ];
18   pythonImportsCheck = [ "lupa" ];
20   meta = with lib; {
21     description = "Lua in Python";
22     homepage = "https://github.com/scoder/lupa";
23     license = with licenses; [ mit ];
24     maintainers = with maintainers; [ fab ];
25   };