Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

python311Packages.docker-pycreds: rename from docker_pycreds #278553

Merged
merged 1 commit into from
Jan 4, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions pkgs/development/python-modules/docker-py/default.nix
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{ lib, buildPythonPackage, fetchPypi, six, requests, websocket-client, docker_pycreds }:
{ lib, buildPythonPackage, fetchPypi, six, requests, websocket-client, docker-pycreds }:

buildPythonPackage rec {
version = "1.10.6";
Expand All @@ -17,7 +17,7 @@ buildPythonPackage rec {
six
requests
websocket-client
docker_pycreds
docker-pycreds
];

meta = {
Expand Down
4 changes: 2 additions & 2 deletions pkgs/development/python-modules/wandb/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
, boto3
, buildPythonPackage
, click
, docker_pycreds
, docker-pycreds
, fetchFromGitHub
, flask
, git
Expand Down Expand Up @@ -81,7 +81,7 @@ buildPythonPackage rec {
propagatedBuildInputs = [
appdirs
click
docker_pycreds
docker-pycreds
gitpython
pathtools
protobuf
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 @@ -127,6 +127,7 @@ mapAliases ({
django_taggit = django-taggit; # added 2021-10-11
django_treebeard = django-treebeard; # added 2023-07-25
dns = dnspython; # added 2017-12-10
docker_pycreds = docker-pycreds; # added 2024-01-03
dogpile_cache = dogpile-cache; # added 2021-10-28
dogpile-core = throw "dogpile-core is no longer maintained, use dogpile-cache instead"; # added 2021-11-20
eebrightbox = throw "eebrightbox is unmaintained upstream and has therefore been removed"; # added 2022-02-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 @@ -3293,7 +3293,7 @@ self: super: with self; {

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

docker_pycreds = callPackage ../development/python-modules/docker-pycreds { };
docker-pycreds = callPackage ../development/python-modules/docker-pycreds { };

docker-py = callPackage ../development/python-modules/docker-py { };

Expand Down