Merge pull request #143991 from fabaff/bump-ibis

python3Packages.ibis: 1.6.0 -> 3.2.0
This commit is contained in:
Fabian Affolter 2021-11-01 10:50:41 +01:00 committed by GitHub
commit 725b18414b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2,29 +2,35 @@
, buildPythonPackage , buildPythonPackage
, fetchFromGitHub , fetchFromGitHub
, python , python
, isPy27 , pythonOlder
}: }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "ibis"; pname = "ibis";
version = "1.6.0"; version = "3.2.0";
disabled = isPy27; format = "setuptools";
disabled = pythonOlder "3.8";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "dmulholl"; owner = "dmulholl";
repo = pname; repo = pname;
rev = version; rev = version;
sha256 = "0xqhk397gzanvj2znwcgy4n5l1lc9r310smxkhjbm1xwvawpixx0"; sha256 = "sha256-EPz9zHnxR75WoRaiHKJNiCRWFwU1TBpC4uHz62jUOqM=";
}; };
checkPhase = '' checkPhase = ''
${python.interpreter} test_ibis.py ${python.interpreter} test_ibis.py
''; '';
pythonImportsCheck = [
"ibis"
];
meta = with lib; { meta = with lib; {
description = "A lightweight template engine"; description = "Lightweight template engine";
homepage = "https://github.com/dmulholland/ibis"; homepage = "https://github.com/dmulholland/ibis";
license = licenses.publicDomain; license = licenses.publicDomain;
maintainers = [ maintainers.costrouc ]; maintainers = with maintainers; [ costrouc ];
}; };
} }