mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-30 02:42:59 +00:00
0215034f25
when they already rely on SRI hashes.
24 lines
489 B
Nix
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;
|
|
};
|
|
}
|