Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 19.03 496 B view raw
1{ stdenv 2, buildPythonPackage 3, fetchPypi 4, isPyPy 5}: 6 7buildPythonPackage rec { 8 pname = "blist"; 9 version = "1.3.6"; 10 disabled = isPyPy; 11 12 src = fetchPypi { 13 inherit pname version; 14 sha256 = "1hqz9pqbwx0czvq9bjdqjqh5bwfksva1is0anfazig81n18c84is"; 15 }; 16 17 meta = with stdenv.lib; { 18 homepage = http://stutzbachenterprises.com/blist/; 19 description = "A list-like type with better asymptotic performance and similar performance on small lists"; 20 license = licenses.bsd0; 21 }; 22 23}