1{
2 lib,
3 buildPythonPackage,
4 fetchFromGitHub,
5 python,
6 pythonOlder,
7}:
8
9buildPythonPackage rec {
10 pname = "ibis";
11 version = "3.3.0";
12 format = "setuptools";
13
14 disabled = pythonOlder "3.8";
15
16 src = fetchFromGitHub {
17 owner = "dmulholl";
18 repo = "ibis";
19 rev = version;
20 hash = "sha256-9ELOAQhD6KXyTN2U0lGmNxxSzx9o2QIt+CNa6i8o5xs=";
21 };
22
23 checkPhase = ''
24 ${python.interpreter} test_ibis.py
25 '';
26
27 pythonImportsCheck = [ "ibis" ];
28
29 meta = with lib; {
30 description = "Lightweight template engine";
31 homepage = "https://github.com/dmulholland/ibis";
32 license = licenses.publicDomain;
33 maintainers = [ ];
34 };
35}