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