2018-08-08 13:12:12 -07:00
|
|
|
{ lib
|
|
|
|
, buildPythonPackage
|
|
|
|
, fetchPypi
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "sortedcontainers";
|
2020-11-29 06:04:42 -08:00
|
|
|
version = "2.3.0";
|
2018-08-08 13:12:12 -07:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2020-11-29 06:04:42 -08:00
|
|
|
sha256 = "59cc937650cf60d677c16775597c89a960658a09cf7c1a668f86e1e4464b10a1";
|
2018-08-08 13:12:12 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
# pypi tarball does not come with tests
|
|
|
|
doCheck = false;
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "Python Sorted Container Types: SortedList, SortedDict, and SortedSet";
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "http://www.grantjenks.com/docs/sortedcontainers/";
|
2018-08-08 13:12:12 -07:00
|
|
|
license = lib.licenses.asl20;
|
|
|
|
maintainers = with lib.maintainers; [ costrouc ];
|
|
|
|
};
|
|
|
|
}
|