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

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

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

  propagatedBuildInputs = [ xmltodict ];

  # no tests
  doCheck = false;

  meta = with 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 ];
  };
}