about summary refs log tree commit diff
path: root/pkgs/development/python-modules/ruamel-ordereddict/default.nix
blob: 987680ad596f25e48fa888fc1ebab21d53687f61 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{ lib
, buildPythonPackage
, fetchPypi
, isPy3k
, isPyPy
}:

buildPythonPackage rec {
  pname = "ruamel-ordereddict";
  version = "0.4.15";
  disabled = isPy3k || isPyPy;

  src = fetchPypi {
    pname = "ruamel.ordereddict";
    inherit version;
    sha256 = "d7d9cf8b11e7662deb460260cf062980cd84b87a1d0457132060ab9d44e0a5f4";
  };

  meta = with lib; {
    description = "A version of dict that keeps keys in insertion resp. sorted order";
    homepage = "https://sourceforge.net/projects/ruamel-ordereddict/";
    license = licenses.mit;
    maintainers = with maintainers; [ SuperSandro2000 ];
  };
}