Merge pull request #160413 from r-ryantm/auto-update/python3.10-dict2xml
python310Packages.dict2xml: 1.7.0 -> 1.7.1
This commit is contained in:
commit
ef7c6bd4a2
1 changed files with 14 additions and 5 deletions
|
@ -1,18 +1,27 @@
|
|||
{ lib, fetchPypi, buildPythonPackage, six }:
|
||||
{ lib
|
||||
, fetchPypi
|
||||
, buildPythonPackage
|
||||
, pythonOlder
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "dict2xml";
|
||||
version = "1.7.0";
|
||||
version = "1.7.1";
|
||||
format = "setuptools";
|
||||
|
||||
disabled = pythonOlder "3.7";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "0bfn8n8sb3slwx7ra8m8fbfy65k20h2qxcqfq99hwqrrkgcffihl";
|
||||
hash = "sha256-ZgCqMx8X7uODNhH3GJmkOnZhLKdVoVdpzyBJLEsaoBY=";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ six ];
|
||||
pythonImportsCheck = [
|
||||
"dict2xml"
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Super simple library to convert a Python dictionary into an xml string";
|
||||
description = "Library to convert a Python dictionary into an XML string";
|
||||
homepage = "https://github.com/delfick/python-dict2xml";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ johnazoidberg ];
|
||||
|
|
Loading…
Reference in a new issue