python3Packages.ibis: init at 1.6.0
This commit is contained in:
parent
882b201f58
commit
784e957c74
2 changed files with 32 additions and 0 deletions
30
pkgs/development/python-modules/ibis/default.nix
Normal file
30
pkgs/development/python-modules/ibis/default.nix
Normal file
|
@ -0,0 +1,30 @@
|
|||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchFromGitHub
|
||||
, python
|
||||
, isPy27
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "ibis";
|
||||
version = "1.6.0";
|
||||
disabled = isPy27;
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "dmulholl";
|
||||
repo = pname;
|
||||
rev = version;
|
||||
sha256 = "0xqhk397gzanvj2znwcgy4n5l1lc9r310smxkhjbm1xwvawpixx0";
|
||||
};
|
||||
|
||||
checkPhase = ''
|
||||
${python.interpreter} test_ibis.py
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
description = "A lightweight template engine";
|
||||
homepage = https://github.com/dmulholland/ibis;
|
||||
license = licenses.publicDomain;
|
||||
maintainers = [ maintainers.costrouc ];
|
||||
};
|
||||
}
|
|
@ -5919,6 +5919,8 @@ in {
|
|||
|
||||
IBMQuantumExperience = callPackage ../development/python-modules/ibmquantumexperience { };
|
||||
|
||||
ibis = callPackage ../development/python-modules/ibis { };
|
||||
|
||||
qiskit = callPackage ../development/python-modules/qiskit { };
|
||||
|
||||
qasm2image = callPackage ../development/python-modules/qasm2image { };
|
||||
|
|
Loading…
Reference in a new issue