Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ lib 2, buildPythonPackage 3, fetchPypi 4}: 5 6buildPythonPackage rec { 7 pname = "sortedcontainers"; 8 version = "2.2.2"; 9 10 src = fetchPypi { 11 inherit pname version; 12 sha256 = "4e73a757831fc3ca4de2859c422564239a31d8213d09a2a666e375807034d2ba"; 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}