evcc: 0.131.8 -> 0.131.10 (#364658)
[NixPkgs.git] / pkgs / development / python-modules / ibis / default.nix
blob2300af23478419a5406e4c051717c3069e155f01
2   lib,
3   buildPythonPackage,
4   fetchFromGitHub,
5   python,
6   pythonOlder,
7 }:
9 buildPythonPackage rec {
10   pname = "ibis";
11   version = "3.2.0";
12   format = "setuptools";
14   disabled = pythonOlder "3.8";
16   src = fetchFromGitHub {
17     owner = "dmulholl";
18     repo = pname;
19     rev = version;
20     hash = "sha256-EPz9zHnxR75WoRaiHKJNiCRWFwU1TBpC4uHz62jUOqM=";
21   };
23   checkPhase = ''
24     ${python.interpreter} test_ibis.py
25   '';
27   pythonImportsCheck = [ "ibis" ];
29   meta = with lib; {
30     description = "Lightweight template engine";
31     homepage = "https://github.com/dmulholland/ibis";
32     license = licenses.publicDomain;
33     maintainers = [ ];
34   };