mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-16 06:47:09 +03:00
pythonPackages.ruamel_yaml_clib: init at 0.2.0
This commit is contained in:
parent
252da2ff4c
commit
5bd7d2c233
29
pkgs/development/python-modules/ruamel_yaml_clib/default.nix
Normal file
29
pkgs/development/python-modules/ruamel_yaml_clib/default.nix
Normal 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;
|
||||
};
|
||||
|
||||
}
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user