Unverified Commit 0c07f630 authored by Gaétan Lepage's avatar Gaétan Lepage Committed by GitHub
Browse files

python312Packages.python-on-whales: cleanup (#380694)

parents 3733e9a4 705adede
Loading
Loading
Loading
Loading
+8 −8
Original line number Diff line number Diff line
@@ -2,8 +2,11 @@
  lib,
  buildPythonPackage,
  fetchFromGitHub,

  # build-system
  setuptools,
  pythonOlder,

  # dependencies
  pydantic,
  requests,
  tqdm,
@@ -15,8 +18,6 @@ buildPythonPackage rec {
  version = "0.75.1";
  pyproject = true;

  disabled = pythonOlder "3.8";

  src = fetchFromGitHub {
    owner = "gabrieldemarmiesse";
    repo = "python-on-whales";
@@ -37,12 +38,11 @@ buildPythonPackage rec {

  pythonImportsCheck = [ "python_on_whales" ];

  meta = with lib; {
  meta = {
    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/${src.tag}";
    license = licenses.mit;
    maintainers = with maintainers; [ bcdarwin ];
    mainProgram = "python-on-whales";
    changelog = "https://github.com/gabrieldemarmiesse/python-on-whales/releases/tag/v${version}";
    license = lib.licenses.mit;
    maintainers = with lib.maintainers; [ bcdarwin ];
  };
}