1{ stdenv
2, buildPythonPackage
3, fetchPypi
4}:
5
6buildPythonPackage rec {
7 pname = "ordereddict";
8 version = "1.1";
9
10 src = fetchPypi {
11 inherit pname version;
12 sha256 = "07qvy11nvgxpzarrni3wrww3vpc9yafgi2bch4j2vvvc42nb8d8w";
13 };
14
15 meta = with stdenv.lib; {
16 description = "A drop-in substitute for Py2.7's new collections.OrderedDict that works in Python 2.4-2.6";
17 license = licenses.bsd3;
18 maintainers = with maintainers; [ ];
19 };
20
21}