depot/third_party/nixpkgs/pkgs/development/python-modules/python-on-whales/default.nix
Default email 504525a148 Project import generated by Copybara.
GitOrigin-RevId: bd645e8668ec6612439a9ee7e71f7eac4099d4f6
2024-01-02 12:29:13 +01:00

45 lines
1 KiB
Nix

{ lib
, buildPythonPackage
, fetchFromGitHub
, setuptools
, pythonOlder
, pydantic
, requests
, tqdm
, typer
}:
buildPythonPackage rec {
pname = "python-on-whales";
version = "0.68.0";
pyproject = true;
disabled = pythonOlder "3.8";
src = fetchFromGitHub {
owner = "gabrieldemarmiesse";
repo = "python-on-whales";
rev = "refs/tags/v${version}";
hash = "sha256-S9IfCCGMVXo7IPyOtu7TIeWRovE1fLQ9pjRO6tVJ4bU=";
};
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 ];
};
}