Commit 314ffcd7 authored by Sarah Clark's avatar Sarah Clark
Browse files

python3Packages.ploomber-core: cleanup

parent d3ed4832
Loading
Loading
Loading
Loading
+3 −6
Original line number Diff line number Diff line
@@ -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 ];
  };
}