Skip to content

Commit

Permalink
python311Packages.cx-oracle: rename from cx_oracle
Browse files Browse the repository at this point in the history
  • Loading branch information
Stunkymonkey committed Jan 3, 2024
1 parent 92ffd10 commit 9f40291
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 7 deletions.
Original file line number Diff line number Diff line change
@@ -1,13 +1,14 @@
{ lib, buildPythonPackage, fetchPypi, odpic }:

buildPythonPackage rec {
pname = "cx_Oracle";
pname = "cx-oracle";
version = "8.3.0";

buildInputs = [ odpic ];

src = fetchPypi {
inherit pname version;
pname = "cx_Oracle";
inherit version;
sha256 = "3b2d215af4441463c97ea469b9cc307460739f89fdfa8ea222ea3518f1a424d9";
};

Expand Down
4 changes: 2 additions & 2 deletions pkgs/development/python-modules/patator/default.nix
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{ lib
, ajpy
, buildPythonPackage
, cx_oracle
, cx-oracle
, dnspython
, fetchPypi
, impacket
Expand Down Expand Up @@ -37,7 +37,7 @@ buildPythonPackage rec {

propagatedBuildInputs = [
ajpy
cx_oracle
cx-oracle
dnspython
impacket
ipy
Expand Down
4 changes: 2 additions & 2 deletions pkgs/development/python-modules/sqlalchemy/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
, aiosqlite
, asyncmy
, asyncpg
, cx_oracle
, cx-oracle
, mariadb
, mypy
, mysql-connector
Expand Down Expand Up @@ -89,7 +89,7 @@ buildPythonPackage rec {
mariadb
];
oracle = [
cx_oracle
cx-oracle
];
oracle_oracledb = [
oracledb
Expand Down
1 change: 1 addition & 0 deletions pkgs/top-level/python-aliases.nix
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,7 @@ mapAliases ({
cozy = throw "cozy was removed because it was not actually https://pypi.org/project/Cozy/."; # added 2022-01-14
cryptography_vectors = "cryptography_vectors is no longer exposed in python*Packages because it is used for testing cryptography only."; # Added 2022-03-23
cx_Freeze = cx-freeze; # added 2023-08-02
cx_oracle = cx-oracle; # added 2024-01-03
d2to1 = throw "d2to1 is archived and no longer works with setuptools v68"; # added 2023-07-30
dask-xgboost = throw "dask-xgboost was removed because its features are available in xgboost"; # added 2022-05-24
dateutil = python-dateutil; # added 2021-07-03
Expand Down
2 changes: 1 addition & 1 deletion pkgs/top-level/python-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -2522,7 +2522,7 @@ self: super: with self; {

cx-freeze = callPackage ../development/python-modules/cx-freeze { };

cx_oracle = callPackage ../development/python-modules/cx_oracle { };
cx-oracle = callPackage ../development/python-modules/cx-oracle { };

cxxfilt = callPackage ../development/python-modules/cxxfilt { };

Expand Down

0 comments on commit 9f40291

Please sign in to comment.