pythonPackages.yamlordereddictloader: init at 0.4.0
This commit is contained in:
parent
278d069304
commit
d956ed6ac8
|
@ -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 ];
|
||||
};
|
||||
}
|
|
@ -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 { };
|
||||
|
|
Loading…
Reference in New Issue