evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / development / python-modules / lupa / default.nix
blob8985e3f99ba46e9ec2d3554b1c3e4f4c12b20806
2   lib,
3   buildPythonPackage,
4   cython,
5   fetchPypi,
6   pythonOlder,
7   setuptools,
8 }:
10 buildPythonPackage rec {
11   pname = "lupa";
12   version = "2.2";
13   pyproject = true;
15   disabled = pythonOlder "3.7";
17   src = fetchPypi {
18     inherit pname version;
19     hash = "sha256-ZloAa8+Nmqzf25U4JLkp0GoMVZEKZitZvi8VerTIkk0=";
20   };
22   build-system = [
23     cython
24     setuptools
25   ];
27   pythonImportsCheck = [ "lupa" ];
29   meta = with lib; {
30     description = "Lua in Python";
31     homepage = "https://github.com/scoder/lupa";
32     changelog = "https://github.com/scoder/lupa/blob/lupa-${version}/CHANGES.rst";
33     license = with licenses; [ mit ];
34     maintainers = with maintainers; [ fab ];
35   };