1{ lib
2, buildPythonPackage
3, fetchPypi
4}:
5
6buildPythonPackage rec {
7 pname = "sortedcontainers";
8 version = "2.1.0";
9
10 src = fetchPypi {
11 inherit pname version;
12 sha256 = "974e9a32f56b17c1bac2aebd9dcf197f3eb9cd30553c5852a3187ad162e1a03a";
13 };
14
15 # pypi tarball does not come with tests
16 doCheck = false;
17
18 meta = {
19 description = "Python Sorted Container Types: SortedList, SortedDict, and SortedSet";
20 homepage = http://www.grantjenks.com/docs/sortedcontainers/;
21 license = lib.licenses.asl20;
22 maintainers = with lib.maintainers; [ costrouc ];
23 };
24}