Merge pull request #135680 from fabaff/bump-pyaml

This commit is contained in:
Sandro
2021-08-26 14:38:48 +02:00
committed by GitHub
@@ -7,20 +7,27 @@
buildPythonPackage rec {
pname = "pyaml";
version = "20.4.0";
version = "21.8.3";
src = fetchPypi {
inherit pname version;
sha256 = "29a5c2a68660a799103d6949167bd6c7953d031449d08802386372de1db6ad71";
sha256 = "sha256-oWNtY8R2MooHIT0LcRG7Y1cPGrij7d9gUiYwJQwj2XU=";
};
propagatedBuildInputs = [ pyyaml ];
propagatedBuildInputs = [
pyyaml
];
checkInputs = [ unidecode ];
checkInputs = [
unidecode
];
meta = {
pythonImportsCheck = [ "pyaml" ];
meta = with lib; {
description = "PyYAML-based module to produce pretty and readable YAML-serialized data";
homepage = "https://github.com/mk-fg/pretty-yaml";
license = lib.licenses.wtfpl;
license = licenses.wtfpl;
maintainers = with maintainers; [ ];
};
}