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