Commit 254f162c authored by Pol Dellaiera's avatar Pol Dellaiera
Browse files

python312Packages.objprint: init at 0.2.3

parent e19c0007
Loading
Loading
Loading
Loading
+39 −0
Original line number Diff line number Diff line
{
  lib,
  buildPythonPackage,
  fetchFromGitHub,
  setuptools,
  pytestCheckHook,
}:

buildPythonPackage rec {
  pname = "objprint";
  version = "0.2.3";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "gaogaotiantian";
    repo = "objprint";
    rev = version;
    hash = "sha256-IGYjDdi3JzYk53ITVOhVnm9EDsa+4HXSVtVUE3wQWTo=";
  };

  build-system = [
    setuptools
  ];

  pythonImportsCheck = [
    "objprint"
  ];

  nativeCheckInputs = [
    pytestCheckHook
  ];

  meta = {
    description = "Library that can print Python objects in human readable format";
    homepage = "https://github.com/gaogaotiantian/objprint";
    license = lib.licenses.asl20;
    maintainers = with lib.maintainers; [ drupol ];
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -9289,6 +9289,8 @@ self: super: with self; {
  objexplore = callPackage ../development/python-modules/objexplore { };
  objprint = callPackage ../development/python-modules/objprint { };
  objsize = callPackage ../development/python-modules/objsize { };
  objgraph = callPackage ../development/python-modules/objgraph {