10 buildPythonPackage rec {
11 pname = "sortedcollections";
13 format = "setuptools";
15 src = fetchFromGitHub {
17 repo = "python-sortedcollections";
19 hash = "sha256-GkZO8afUAgDpDjIa3dhO6nxykqrljeKldunKMODSXfg=";
22 propagatedBuildInputs = [ sortedcontainers ];
29 pythonImportsCheck = [ "sortedcollections" ];
32 description = "Python Sorted Collections";
33 homepage = "http://www.grantjenks.com/docs/sortedcollections/";
34 license = with licenses; [ asl20 ];
35 maintainers = with maintainers; [ fab ];