1{ lib
2, buildPythonPackage
3, fetchPypi
4, xmltodict
5}:
6
7buildPythonPackage rec {
8 version = "0.9.7";
9 pname = "DataModelDict";
10
11 src = fetchPypi {
12 inherit pname version;
13 sha256 = "b1be7573cb4401aa250fd00f2e6392543f6f2498f8e02f6313595aa220e5c99e";
14 };
15
16 propagatedBuildInputs = [ xmltodict ];
17
18 # no tests
19 doCheck = false;
20
21 meta = with lib; {
22 homepage = "https://github.com/usnistgov/DataModelDict/";
23 description = "Class allowing for data models equivalently represented as Python dictionaries, JSON, and XML";
24 license = licenses.mit;
25 maintainers = [ maintainers.costrouc ];
26 };
27}