nixpkgs/pkgs/development/python-modules/dict2xml/default.nix
Martin Weinelt 44eb795e6b python3Packages.dict2xml: 1.7.7 -> 1.7.8
https://github.com/delfick/python-dict2xml/releases/tag/release-release-1.7.8

This commit was automatically generated using update-python-libraries.
2026-02-01 16:42:57 +01:00

34 lines
830 B
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
hatchling,
}:
buildPythonPackage rec {
pname = "dict2xml";
version = "1.7.8";
pyproject = true;
src = fetchFromGitHub {
owner = "delfick";
repo = "python-dict2xml";
tag = "release-${version}";
hash = "sha256-wCspFcqn6uAvecxx4Agzg7N3ps82mg8ukmmGwhfgajk=";
};
nativeBuildInputs = [ hatchling ];
# Tests are implemented in a custom DSL (RSpec)
doCheck = false;
pythonImportsCheck = [ "dict2xml" ];
meta = {
description = "Library to convert a Python dictionary into an XML string";
homepage = "https://github.com/delfick/python-dict2xml";
changelog = "https://github.com/delfick/python-dict2xml/releases/tag/release-${src.tag}";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ johnazoidberg ];
};
}