python3Packages.ruamel-yaml-string: init at 0.1.1

This commit is contained in:
Federico Beffa
2025-03-04 17:45:38 +01:00
parent 8cd90aba7c
commit 60cde9e4b9
2 changed files with 34 additions and 0 deletions
@@ -0,0 +1,32 @@
{
lib,
buildPythonPackage,
fetchPypi,
setuptools,
ruamel-yaml,
}:
buildPythonPackage rec {
pname = "ruamel-yaml-string";
version = "0.1.1";
pyproject = true;
src = fetchPypi {
inherit version;
pname = "ruamel.yaml.string";
hash = "sha256-enrtzAVdRcAE04t1b1hHTr77EGhR9M5WzlhBVwl4Q1A=";
};
build-system = [ setuptools ];
dependencies = [ ruamel-yaml ];
pythonImportsCheck = [ "ruamel.yaml" ];
meta = with lib; {
description = "Add dump_to_string/dumps method that returns YAML document as string";
homepage = "https://sourceforge.net/projects/ruamel-yaml-string/";
license = licenses.mit;
maintainers = with maintainers; [ fbeffa ];
};
}
+2
View File
@@ -14334,6 +14334,8 @@ self: super: with self; {
ruamel-yaml-clib = callPackage ../development/python-modules/ruamel-yaml-clib { };
ruamel-yaml-string = callPackage ../development/python-modules/ruamel-yaml-string { };
rubicon-objc = callPackage ../development/python-modules/rubicon-objc { };
rubymarshal = callPackage ../development/python-modules/rubymarshal { };