python3Packages.ploomber-core: cleanup

This commit is contained in:
Sarah Clark
2025-07-15 11:28:45 -07:00
parent d3ed4832ce
commit 314ffcd75e
@@ -2,7 +2,6 @@
lib,
buildPythonPackage,
fetchFromGitHub,
pythonOlder,
setuptools,
pyyaml,
posthog,
@@ -12,9 +11,7 @@
buildPythonPackage rec {
pname = "ploomber-core";
version = "0.2.25";
pyproject = true;
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "ploomber";
@@ -39,11 +36,11 @@ buildPythonPackage rec {
pythonImportsCheck = [ "ploomber_core" ];
meta = with lib; {
meta = {
description = "Core module shared across Ploomber projects";
homepage = "https://github.com/ploomber/core";
changelog = "https://github.com/ploomber/core/blob/${version}/CHANGELOG.md";
license = licenses.asl20;
maintainers = with maintainers; [ euxane ];
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ euxane ];
};
}