python313Packages.lima: refactor, powerdns-admin: add missing input (#433448)
This commit is contained in:
@@ -66,6 +66,8 @@ let
|
||||
werkzeug
|
||||
zipp
|
||||
zxcvbn
|
||||
standard-imghdr
|
||||
|
||||
];
|
||||
|
||||
all_patches = [
|
||||
|
||||
@@ -2,26 +2,30 @@
|
||||
lib,
|
||||
buildPythonPackage,
|
||||
fetchPypi,
|
||||
isPy3k,
|
||||
pytestCheckHook,
|
||||
setuptools,
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "lima";
|
||||
version = "0.5";
|
||||
format = "setuptools";
|
||||
disabled = !isPy3k;
|
||||
pyproject = true;
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "0qqj0053r77ppkcyyk2fhpaxjzsl1h98nf9clpny6cs66sdl241v";
|
||||
hash = "sha256-OxBBmzZGM+PtpSw5ixIMVH/Z1YVOTO/ZvPecPAoAEmM=";
|
||||
};
|
||||
|
||||
build-system = [ setuptools ];
|
||||
|
||||
nativeCheckInputs = [ pytestCheckHook ];
|
||||
|
||||
pythonImportsCheck = [ "lima" ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Lightweight Marshalling of Python 3 Objects";
|
||||
description = "Lightweight Marshalling of Python Objects";
|
||||
homepage = "https://github.com/b6d/lima";
|
||||
changelog = "https://github.com/b6d/lima/blob/${version}/CHANGELOG.rst";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ zhaofengli ];
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user