Skip to content

Commit

Permalink
Merge pull request #325950 from superherointj/azure-cli-refactor
Browse files Browse the repository at this point in the history
azure-cli: move to by-name, nixfmt
  • Loading branch information
katexochen authored Jul 10, 2024
2 parents 0f8eee8 + b918e48 commit 91e135a
Show file tree
Hide file tree
Showing 12 changed files with 706 additions and 593 deletions.
3 changes: 3 additions & 0 deletions .git-blame-ignore-revs
Original file line number Diff line number Diff line change
Expand Up @@ -135,3 +135,6 @@ f8c4a98e8e138e21353a2c33b90db3359f539b37
acd0e3898feb321cb9a71a0fd376f1157d0f4553
1b28414d2886c57343864326dbb745a634d3e37d
6afb255d976f85f3359e4929abd6f5149c323a02

# azure-cli: move to by-name, nixfmt #325950
96cd538b68bd1d0a0a37979356d669abbba32ebc
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,12 @@
#
# Checkout ./README.md for more information.

{ lib
, mkAzExtension
, mycli
, python3Packages
, python3
{
lib,
mkAzExtension,
mycli,
python3Packages,
python3,
}:

{
Expand All @@ -26,14 +27,14 @@
url = "https://azcliprod.blob.core.windows.net/cli-extensions/rdbms_connect-${version}-py2.py3-none-any.whl";
sha256 = "49cbe8d9b7ea07a8974a29ad90247e864ed798bed5f28d0e3a57a4b37f5939e7";
description = "Support for testing connection to Azure Database for MySQL & PostgreSQL servers";
propagatedBuildInputs = (with python3Packages; [
pgcli
psycopg2
pymysql
setproctitle
]) ++ [
(mycli.override { inherit python3; })
];
propagatedBuildInputs =
(with python3Packages; [
pgcli
psycopg2
pymysql
setproctitle
])
++ [ (mycli.override { inherit python3; }) ];
meta.maintainers = with lib.maintainers; [ obreitwi ];
};

Expand Down
Loading

0 comments on commit 91e135a

Please sign in to comment.