nixpkgs/pkgs/development/python-modules/dicttoxml/default.nix
Martin Weinelt 0215034f25 python3.pkgs: Migrate fetchers to use hash
when they already rely on SRI hashes.
2023-03-03 23:59:29 +01:00

24 lines
489 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
}:
buildPythonPackage rec {
pname = "dicttoxml";
version = "1.7.16";
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;
};
}