Files
nixpkgs/pkgs/development/python-modules/dicttoxml/default.nix
T
adisbladis 02dab4ab5c python3.pkgs.*: Explicitly pass buildPythonPackage format parameter
Long term we should move everything over to `pyproject = true`, but in
the mean time we can work towards deprecating the implicit `format` paremeter.

cc https://github.com/NixOS/nixpkgs/issues/253154
cc @mweinelt @figsoda
2023-12-07 17:46:49 +01:00

25 lines
514 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
}:
buildPythonPackage rec {
pname = "dicttoxml";
version = "1.7.16";
format = "setuptools";
src = fetchPypi {
inherit pname version;
hash = "sha256-bzbOZEiB21zYlAvum3yz8/a3sye6imfYPT4sqgU4v50=";
};
# No tests in archive
doCheck = false;
meta = {
description = "Converts a Python dictionary or other native data type into a valid XML string";
homepage = "https://github.com/quandyfactory/dicttoxml";
license = lib.licenses.gpl2;
};
}