summary refs log tree commit diff
path: root/pkgs/development/python-modules/datamodeldict/default.nix
blob: 9aac803ccae19c8ce25470151d1231cfedf952cc (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
25
26
27
{ stdenv
, buildPythonPackage
, fetchPypi
, xmltodict
}:

buildPythonPackage rec {
  version = "0.9.4";
  pname = "DataModelDict";

  src = fetchPypi {
    inherit pname version;
    sha256 = "97d8e999e000cf69c48e57b1a72eb45a27d83576a38c6cd8550c230b018be7af";
  };

  propagatedBuildInputs = [ xmltodict ];

  # no tests
  doCheck = false;

  meta = with stdenv.lib; {
    homepage = https://github.com/usnistgov/DataModelDict/;
    description = "Class allowing for data models equivalently represented as Python dictionaries, JSON, and XML";
    license = licenses.mit;
    maintainers = [ maintainers.costrouc ];
  };
}