1{ lib
2, buildPythonPackage
3, fetchPypi
4}:
5
6buildPythonPackage rec {
7 pname = "sortedcontainers";
8 version = "2.4.0";
9
10 src = fetchPypi {
11 inherit pname version;
12 sha256 = "25caa5a06cc30b6b83d11423433f65d1f9d76c4c6a0c90e3379eaa43b9bfdb88";
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}