about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/dicttoxml/default.nix
blob: 7d30aad69c456ca7de18cc091983359a0764d9aa (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
{ lib
, buildPythonPackage
, fetchPypi
}:

buildPythonPackage rec {
  pname = "dicttoxml";
  version = "1.7.4";

  src = fetchPypi {
    inherit pname version;
    sha256 = "ea44cc4ec6c0f85098c57a431a1ee891b3549347b07b7414c8a24611ecf37e45";
  };

  # 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;
  };
}