Skip to content

Commit

Permalink
python3Packages.yamlloader: init at 0.5.5
Browse files Browse the repository at this point in the history
  • Loading branch information
freezeboy authored and Jonathan Ringer committed Nov 23, 2020
1 parent 33c2660 commit 8918638
Show file tree
Hide file tree
Showing 2 changed files with 35 additions and 0 deletions.
33 changes: 33 additions & 0 deletions pkgs/development/python-modules/yamlloader/default.nix
@@ -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 ];
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/python-packages.nix
Expand Up @@ -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 { };
Expand Down

0 comments on commit 8918638

Please sign in to comment.