Files
nixpkgs/pkgs/development/python-modules/pyaml/default.nix
Martin Weinelt e82d5fbf78 python3Packages.pyaml: 25.5.0 -> 25.7.0
This commit was automatically generated using update-python-libraries.
2025-08-09 19:02:26 +02:00

36 lines
700 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
setuptools,
pyyaml,
unidecode,
}:
buildPythonPackage rec {
pname = "pyaml";
version = "25.7.0";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-4ROmTsFogb8rCS4r64S33PG9mAlq0X9fFOj7eCp12Zs=";
};
nativeBuildInputs = [ setuptools ];
propagatedBuildInputs = [ pyyaml ];
nativeCheckInputs = [ unidecode ];
pythonImportsCheck = [ "pyaml" ];
meta = with lib; {
description = "PyYAML-based module to produce pretty and readable YAML-serialized data";
mainProgram = "pyaml";
homepage = "https://github.com/mk-fg/pretty-yaml";
license = licenses.wtfpl;
maintainers = [ ];
};
}