nixpkgs/pkgs/development/python-modules/lupa/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

27 lines
505 B
Nix
Raw Normal View History

2021-03-09 02:22:28 +03:00
{ lib
, buildPythonPackage
, cython
, fetchPypi
}:
buildPythonPackage rec {
pname = "lupa";
2022-11-19 02:27:45 +03:00
version = "1.14.1";
2021-03-09 02:22:28 +03:00
src = fetchPypi {
inherit pname version;
2022-11-19 02:27:45 +03:00
sha256 = "sha256-0P1OYK0Un+JckFMOKg4DKkKm8EVfKcoO24Fw1ux1HG4=";
2021-03-09 02:22:28 +03:00
};
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 ];
};
}