blob: 5c392c4946422a79b10568c96a9aa2b33e96cc0a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
{
lib,
buildPythonPackage,
cython,
fetchPypi,
setuptools,
}:
buildPythonPackage rec {
pname = "lupa";
version = "2.6";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-mncKbolXa+NEdmjXztMSzW/UHTwTwkYsncLCq1cORdk=";
};
build-system = [
cython
setuptools
];
pythonImportsCheck = [ "lupa" ];
meta = {
description = "Lua in Python";
homepage = "https://github.com/scoder/lupa";
changelog = "https://github.com/scoder/lupa/blob/lupa-${version}/CHANGES.rst";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ fab ];
};
}
|