Unverified Commit 16f39dd7 authored by Mario Rodas's avatar Mario Rodas Committed by GitHub
Browse files

Merge pull request #263811 from bcdarwin/init-python3-docker-on-whales

python311Packages.python-on-whales: init at 0.65.0
parents f6d643f3 f10c68eb
Loading
Loading
Loading
Loading
+45 −0
Original line number Diff line number Diff line
{ lib
, buildPythonPackage
, fetchFromGitHub
, setuptools
, pythonOlder
, pydantic
, requests
, tqdm
, typer
}:

buildPythonPackage rec {
  pname = "python-on-whales";
  version = "0.65.0";
  pyproject = true;

  disabled = pythonOlder "3.8";

  src = fetchFromGitHub {
    owner = "gabrieldemarmiesse";
    repo = "python-on-whales";
    rev = "refs/tags/v${version}";
    hash = "sha256-aFE4qeNMSxhHs7IAjYQYl15s4NkHH8balTV3N0obNPs=";
  };

  nativeBuildInputs = [ setuptools ];

  propagatedBuildInputs = [
    pydantic
    requests
    tqdm
    typer
  ];

  doCheck = false;  # majority of tests require Docker and/or network access
  pythonImportsCheck = [ "python_on_whales" ];

  meta = with lib; {
    description = "Docker client for Python, designed to be fun and intuitive";
    homepage = "https://github.com/gabrieldemarmiesse/python-on-whales";
    changelog = "https://github.com/gabrieldemarmiesse/python-on-whales/releases/tag/v${version}";
    license = licenses.mit;
    maintainers = with maintainers; [ bcdarwin ];
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -11502,6 +11502,8 @@ self: super: with self; {
  python-olm = callPackage ../development/python-modules/python-olm { };
  python-on-whales = callPackage ../development/python-modules/python-on-whales { };
  python-opendata-transport = callPackage ../development/python-modules/python-opendata-transport { };
  python-openstackclient = callPackage ../development/python-modules/python-openstackclient { };