pythonPackages.yamlordereddictloader: init at 0.4.0

This commit is contained in:
Martin Weinelt 2020-09-19 03:42:55 +02:00 committed by Jon
parent 278d069304
commit d956ed6ac8
2 changed files with 33 additions and 0 deletions

View File

@ -0,0 +1,31 @@
{ lib
, buildPythonPackage
, fetchPypi
, isPy27
, ordereddict
, pyyaml
}:
buildPythonPackage rec {
pname = "yamlordereddictloader";
version = "0.4.0";
src = fetchPypi {
inherit pname version;
sha256 = "03h8wa6pzqjiw25s3jv9gydn77gs444mf31lrgvpgy53kswz0c3z";
};
propagatedBuildInputs = [ pyyaml ] ++ lib.optional (isPy27) ordereddict;
# no tests
doCheck = false;
pythonImportsCheck = [ "yamlordereddictloader" ];
meta = with lib; {
description = "YAML loader and dump for PyYAML allowing to keep keys order";
homepage = "https://github.com/fmenabe/python-yamlordereddictloader";
license = licenses.mit;
maintainers = with maintainers; [ hexa ];
};
}

View File

@ -7573,6 +7573,8 @@ in {
yamllint = callPackage ../development/python-modules/yamllint { };
yamlordereddictloader = callPackage ../development/python-modules/yamlordereddictloader { };
yanc = callPackage ../development/python-modules/yanc { };
yapf = callPackage ../development/python-modules/yapf { };