mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
Merge pull request #143991 from fabaff/bump-ibis
python3Packages.ibis: 1.6.0 -> 3.2.0
This commit is contained in:
commit
725b18414b
1 changed files with 12 additions and 6 deletions
|
@ -2,29 +2,35 @@
|
|||
, buildPythonPackage
|
||||
, fetchFromGitHub
|
||||
, python
|
||||
, isPy27
|
||||
, pythonOlder
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "ibis";
|
||||
version = "1.6.0";
|
||||
disabled = isPy27;
|
||||
version = "3.2.0";
|
||||
format = "setuptools";
|
||||
|
||||
disabled = pythonOlder "3.8";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "dmulholl";
|
||||
repo = pname;
|
||||
rev = version;
|
||||
sha256 = "0xqhk397gzanvj2znwcgy4n5l1lc9r310smxkhjbm1xwvawpixx0";
|
||||
sha256 = "sha256-EPz9zHnxR75WoRaiHKJNiCRWFwU1TBpC4uHz62jUOqM=";
|
||||
};
|
||||
|
||||
checkPhase = ''
|
||||
${python.interpreter} test_ibis.py
|
||||
'';
|
||||
|
||||
pythonImportsCheck = [
|
||||
"ibis"
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "A lightweight template engine";
|
||||
description = "Lightweight template engine";
|
||||
homepage = "https://github.com/dmulholland/ibis";
|
||||
license = licenses.publicDomain;
|
||||
maintainers = [ maintainers.costrouc ];
|
||||
maintainers = with maintainers; [ costrouc ];
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue