pythonPackages.cx_oracle: init at 6.1
This commit is contained in:
parent
a15544d5f5
commit
c9366518fa
25
pkgs/development/python-modules/cx_oracle/default.nix
Normal file
25
pkgs/development/python-modules/cx_oracle/default.nix
Normal file
@ -0,0 +1,25 @@
|
|||||||
|
{ stdenv, buildPythonPackage, fetchPypi, oracle-instantclient }:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "cx_Oracle";
|
||||||
|
version = "6.1";
|
||||||
|
|
||||||
|
buildInputs = [
|
||||||
|
oracle-instantclient
|
||||||
|
];
|
||||||
|
|
||||||
|
src = fetchPypi {
|
||||||
|
inherit pname version;
|
||||||
|
sha256 = "80545fc7acbdda917dd2b1604c938141256bdfed3ad464a44586c9c2f09c3004";
|
||||||
|
};
|
||||||
|
|
||||||
|
# Check need an Oracle database to run
|
||||||
|
doCheck = false;
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
description = "Python interface to Oracle";
|
||||||
|
homepage = "https://oracle.github.io/python-cx_Oracle";
|
||||||
|
license = licenses.bsdOriginal;
|
||||||
|
maintainers = with maintainers; [ y0no ];
|
||||||
|
};
|
||||||
|
}
|
@ -1435,6 +1435,8 @@ in {
|
|||||||
|
|
||||||
cx_Freeze = callPackage ../development/python-modules/cx_freeze {};
|
cx_Freeze = callPackage ../development/python-modules/cx_freeze {};
|
||||||
|
|
||||||
|
cx_oracle = callPackage ../development/python-modules/cx_oracle {};
|
||||||
|
|
||||||
cvxopt = buildPythonPackage rec {
|
cvxopt = buildPythonPackage rec {
|
||||||
name = "${pname}-${version}";
|
name = "${pname}-${version}";
|
||||||
pname = "cvxopt";
|
pname = "cvxopt";
|
||||||
|
Loading…
x
Reference in New Issue
Block a user