mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-26 00:43:20 +00:00
python312Packages.objprint: 0.2.3 -> 0.3.0 (#354693)
This commit is contained in:
commit
3be1322ad9
@ -8,31 +8,26 @@
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "objprint";
|
||||
version = "0.2.3";
|
||||
version = "0.3.0";
|
||||
pyproject = true;
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "gaogaotiantian";
|
||||
repo = "objprint";
|
||||
rev = version;
|
||||
hash = "sha256-IGYjDdi3JzYk53ITVOhVnm9EDsa+4HXSVtVUE3wQWTo=";
|
||||
rev = "refs/tags/${version}";
|
||||
hash = "sha256-+OS034bikrKy4F27b6ic97fHTW6rSMxQ0dx4caF6cUM=";
|
||||
};
|
||||
|
||||
build-system = [
|
||||
setuptools
|
||||
];
|
||||
build-system = [ setuptools ];
|
||||
|
||||
pythonImportsCheck = [
|
||||
"objprint"
|
||||
];
|
||||
nativeCheckInputs = [ pytestCheckHook ];
|
||||
|
||||
nativeCheckInputs = [
|
||||
pytestCheckHook
|
||||
];
|
||||
pythonImportsCheck = [ "objprint" ];
|
||||
|
||||
meta = {
|
||||
description = "Library that can print Python objects in human readable format";
|
||||
homepage = "https://github.com/gaogaotiantian/objprint";
|
||||
changelog = "https://github.com/gaogaotiantian/objprint/releases/tag/${version}";
|
||||
license = lib.licenses.asl20;
|
||||
maintainers = with lib.maintainers; [ drupol ];
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user