1{ stdenv
2, buildPythonPackage
3, fetchPypi
4, xmltodict
5}:
6
7buildPythonPackage rec {
8 version = "0.9.6";
9 pname = "DataModelDict";
10
11 src = fetchPypi {
12 inherit pname version;
13 sha256 = "857d4bf33f0b26ca718bd821fda7502dd6fb15aa09201b1fbdfaf4dfc85b8f6c";
14 };
15
16 propagatedBuildInputs = [ xmltodict ];
17
18 # no tests
19 doCheck = false;
20
21 meta = with stdenv.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}