pythonPackages.DataModelDict: init at 0.9.4

This commit is contained in:
Chris Ostrouchov 2018-10-10 18:13:36 -04:00
parent 0cf2c6fcfe
commit 7dd7190a57
No known key found for this signature in database
GPG key ID: 9ED59B0AB1EAF573
2 changed files with 29 additions and 0 deletions

View file

@ -0,0 +1,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 ];
};
}

View file

@ -284,6 +284,8 @@ in {
btchip = callPackage ../development/python-modules/btchip { };
datamodeldict = callPackage ../development/python-modules/datamodeldict { };
dbf = callPackage ../development/python-modules/dbf { };
dbfread = callPackage ../development/python-modules/dbfread { };