Merge pull request #135680 from fabaff/bump-pyaml

Sandro dda968a5 b7c83079

Changed files
+13 -6
pkgs
development
python-modules
pyaml
+13 -6
pkgs/development/python-modules/pyaml/default.nix
···
buildPythonPackage rec {
pname = "pyaml";
-
version = "20.4.0";
src = fetchPypi {
inherit pname version;
-
sha256 = "29a5c2a68660a799103d6949167bd6c7953d031449d08802386372de1db6ad71";
};
-
propagatedBuildInputs = [ pyyaml ];
-
checkInputs = [ unidecode ];
-
meta = {
description = "PyYAML-based module to produce pretty and readable YAML-serialized data";
homepage = "https://github.com/mk-fg/pretty-yaml";
-
license = lib.licenses.wtfpl;
};
}
···
buildPythonPackage rec {
pname = "pyaml";
+
version = "21.8.3";
src = fetchPypi {
inherit pname version;
+
sha256 = "sha256-oWNtY8R2MooHIT0LcRG7Y1cPGrij7d9gUiYwJQwj2XU=";
};
+
propagatedBuildInputs = [
+
pyyaml
+
];
+
+
checkInputs = [
+
unidecode
+
];
+
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 = licenses.wtfpl;
+
maintainers = with maintainers; [ ];
};
}