Merge pull request #160529 from r-ryantm/auto-update/python3.10-DataModelDict
python310Packages.datamodeldict: 0.9.8 -> 0.9.9
This commit is contained in:
commit
71dbadfbed
1 changed files with 18 additions and 7 deletions
|
@ -1,27 +1,38 @@
|
||||||
{ lib
|
{ lib
|
||||||
, buildPythonPackage
|
, buildPythonPackage
|
||||||
, fetchPypi
|
, fetchPypi
|
||||||
|
, pythonOlder
|
||||||
, xmltodict
|
, xmltodict
|
||||||
}:
|
}:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
version = "0.9.8";
|
pname = "datamodeldict";
|
||||||
pname = "DataModelDict";
|
version = "0.9.9";
|
||||||
|
format = "setuptools";
|
||||||
|
|
||||||
|
disabled = pythonOlder "3.7";
|
||||||
|
|
||||||
src = fetchPypi {
|
src = fetchPypi {
|
||||||
inherit pname version;
|
pname = "DataModelDict";
|
||||||
sha256 = "65c36954efa17449c69a4d8cb11c9273593ef01428cd77a609ee134eba771550";
|
inherit version;
|
||||||
|
hash = "sha256-DadBRsc8qEu9PWgMNllGS2ESKL7kgBLDhg4yDr87WRk=";
|
||||||
};
|
};
|
||||||
|
|
||||||
propagatedBuildInputs = [ xmltodict ];
|
propagatedBuildInputs = [
|
||||||
|
xmltodict
|
||||||
|
];
|
||||||
|
|
||||||
# no tests
|
# no tests
|
||||||
doCheck = false;
|
doCheck = false;
|
||||||
|
|
||||||
|
pythonImportsCheck = [
|
||||||
|
"DataModelDict"
|
||||||
|
];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
homepage = "https://github.com/usnistgov/DataModelDict/";
|
|
||||||
description = "Class allowing for data models equivalently represented as Python dictionaries, JSON, and XML";
|
description = "Class allowing for data models equivalently represented as Python dictionaries, JSON, and XML";
|
||||||
|
homepage = "https://github.com/usnistgov/DataModelDict/";
|
||||||
license = licenses.mit;
|
license = licenses.mit;
|
||||||
maintainers = [ maintainers.costrouc ];
|
maintainers = with maintainers; [ costrouc ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue