python3Packages.ruamel-yaml-string: init at 0.1.1
This commit is contained in:
@@ -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 ];
|
||||
};
|
||||
}
|
||||
@@ -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 { };
|
||||
|
||||
Reference in New Issue
Block a user