about summary refs log tree commit diff
path: root/pkgs/development/python-modules/dicttoxml/default.nix
blob: d205aa0cd4714c6c7d98fca7d4d3f889b3944d76 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{ 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;
  };
}