mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 23:22:37 +00:00
pythonPackages.ruamel_yaml: init at 0.10.13
This commit is contained in:
parent
d0db3c2d52
commit
a5846c6c51
@ -17544,6 +17544,24 @@ in modules // {
|
||||
};
|
||||
};
|
||||
|
||||
ruamel_yaml = buildPythonPackage rec {
|
||||
name = "ruamel.yaml-${version}";
|
||||
version = "0.10.13";
|
||||
|
||||
src = pkgs.fetchurl {
|
||||
url = "https://pypi.python.org/packages/source/r/ruamel.yaml/${name}.tar.gz";
|
||||
sha256 = "0r9mn5lm9dcxpy0wpn18cp7i5hkvjvknv3dxg8d9ca6km39m4asn";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = with self; [ ruamel_base ruamel_ordereddict ];
|
||||
|
||||
meta = {
|
||||
description = "YAML parser/emitter that supports roundtrip preservation of comments, seq/map flow style, and map key order";
|
||||
homepage = https://bitbucket.org/ruamel/yaml;
|
||||
license = licenses.mit;
|
||||
};
|
||||
};
|
||||
|
||||
runsnakerun = buildPythonPackage rec {
|
||||
name = "runsnakerun-2.0.4";
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user