pythonPackages.xml-marshaller: init at 1.0.2
This commit is contained in:
parent
40fbf5a5ca
commit
5452fbfa86
2 changed files with 28 additions and 0 deletions
26
pkgs/development/python-modules/xml-marshaller/default.nix
Normal file
26
pkgs/development/python-modules/xml-marshaller/default.nix
Normal file
|
@ -0,0 +1,26 @@
|
||||||
|
{ buildPythonPackage
|
||||||
|
, fetchPypi
|
||||||
|
, lib
|
||||||
|
, lxml
|
||||||
|
, six
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "xml-marshaller";
|
||||||
|
version = "1.0.2";
|
||||||
|
|
||||||
|
src = fetchPypi {
|
||||||
|
inherit version;
|
||||||
|
pname = "xml_marshaller";
|
||||||
|
sha256 = "sha256-QvBALLDD8o5nZQ5Z4bembhadK6jcydWKQpJaSmGqqJM=";
|
||||||
|
};
|
||||||
|
|
||||||
|
propagatedBuildInputs = [ lxml six ];
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "This module allows one to marshal simple Python data types into a custom XML format.";
|
||||||
|
homepage = "https://www.python.org/community/sigs/current/xml-sig/";
|
||||||
|
license = licenses.psfl;
|
||||||
|
maintainers = with maintainers; [ mazurel ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -9429,6 +9429,8 @@ in {
|
||||||
|
|
||||||
xmltodict = callPackage ../development/python-modules/xmltodict { };
|
xmltodict = callPackage ../development/python-modules/xmltodict { };
|
||||||
|
|
||||||
|
xml-marshaller = callPackage ../development/python-modules/xml-marshaller { };
|
||||||
|
|
||||||
xmodem = callPackage ../development/python-modules/xmodem { };
|
xmodem = callPackage ../development/python-modules/xmodem { };
|
||||||
|
|
||||||
xnd = callPackage ../development/python-modules/xnd { };
|
xnd = callPackage ../development/python-modules/xnd { };
|
||||||
|
|
Loading…
Reference in a new issue