pythonPackages.ruamel_yaml_clib: init at 0.2.0

This commit is contained in:
Jonathan Ringer 2019-10-24 23:53:44 -07:00 committed by Frederik Rietdijk
parent 252da2ff4c
commit 5bd7d2c233
2 changed files with 31 additions and 0 deletions

View File

@ -0,0 +1,29 @@
{ stdenv
, buildPythonPackage
, fetchFromBitbucket
, ruamel_base
, ruamel_ordereddict
, isPy3k
}:
buildPythonPackage rec {
pname = "ruamel.yaml.clib";
version = "0.2.0";
src = fetchFromBitbucket {
owner = "ruamel";
repo = "yaml.clib";
rev = version;
sha256 = "0kq6zi96qlm72lzj90fc2rfk6nm5kqhk6qxdl8wl9s3a42b0v6wl";
};
# outputs match wheel
doCheck = false;
meta = with stdenv.lib; {
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;
};
}

View File

@ -5259,6 +5259,8 @@ in {
ruamel_yaml = callPackage ../development/python-modules/ruamel_yaml { };
ruamel_yaml_clib = callPackage ../development/python-modules/ruamel_yaml_clib { };
ruffus = callPackage ../development/python-modules/ruffus { };
runsnakerun = callPackage ../development/python-modules/runsnakerun { };