mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
pythonPackages.ruamel_ordereddict: init at 0.4.9
This commit is contained in:
parent
a5846c6c51
commit
96bb93a5a1
1 changed files with 17 additions and 0 deletions
|
@ -17544,6 +17544,23 @@ in modules // {
|
|||
};
|
||||
};
|
||||
|
||||
ruamel_ordereddict = buildPythonPackage rec {
|
||||
name = "ruamel.ordereddict-${version}";
|
||||
version = "0.4.9";
|
||||
disabled = isPy3k || isPyPy;
|
||||
|
||||
src = pkgs.fetchurl {
|
||||
url = "https://pypi.python.org/packages/source/r/ruamel.ordereddict/${name}.tar.gz";
|
||||
sha256 = "1xmkl8v9l9inm2pyxgc1fm5005yxm7fkd5gv74q7lj1iy5qc8n3h";
|
||||
};
|
||||
|
||||
meta = {
|
||||
description = "a version of dict that keeps keys in insertion resp. sorted order";
|
||||
homepage = https://bitbucket.org/ruamel/ordereddict;
|
||||
license = licenses.mit;
|
||||
};
|
||||
};
|
||||
|
||||
ruamel_yaml = buildPythonPackage rec {
|
||||
name = "ruamel.yaml-${version}";
|
||||
version = "0.10.13";
|
||||
|
|
Loading…
Reference in a new issue