python3Packages.yamlloader: init at 0.5.5

This commit is contained in:
freezeboy 2020-10-31 22:49:02 +01:00 committed by Jonathan Ringer
parent 33c26604ae
commit 891863830d
2 changed files with 35 additions and 0 deletions

View file

@ -0,0 +1,33 @@
{ lib, buildPythonPackage, fetchPypi
, pytest, pyyaml
}:
buildPythonPackage rec {
pname = "yamlloader";
version = "0.5.5";
src = fetchPypi {
inherit pname version;
sha256 = "3KtfFrObsD0Q3aTNTzDJQ2dexMd3GAf8Z+fxuzGb9Mg=";
};
propagatedBuildInputs = [
pyyaml
];
checkInputs = [
pytest
];
pythonImportsCheck = [
"yaml"
"yamlloader"
];
meta = with lib; {
description = "A case-insensitive list for Python";
homepage = "https://github.com/Phynix/yamlloader";
license = licenses.mit;
maintainers = with maintainers; [ freezeboy ];
};
}

View file

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