Loading pkgs/development/python-modules/python-on-whales/default.nix 0 → 100644 +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 ]; }; } pkgs/top-level/python-packages.nix +2 −0 Original line number Diff line number Diff line Loading @@ -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 { }; Loading Loading
pkgs/development/python-modules/python-on-whales/default.nix 0 → 100644 +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 ]; }; }
pkgs/top-level/python-packages.nix +2 −0 Original line number Diff line number Diff line Loading @@ -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 { }; Loading