Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ stdenv 2, buildPythonPackage 3, fetchPypi 4, twitter-common-lang 5}: 6 7buildPythonPackage rec { 8 pname = "twitter.common.collections"; 9 version = "0.3.10"; 10 11 src = fetchPypi { 12 inherit pname version; 13 sha256 = "c27f11612572f614cadf181cc65bcd0275d8b08f182bcb4ea1b74cd662625f21"; 14 }; 15 16 propagatedBuildInputs = [ twitter-common-lang ]; 17 18 meta = with stdenv.lib; { 19 description = "Twitter's common collections"; 20 homepage = "https://twitter.github.io/commons/"; 21 license = licenses.asl20; 22 maintainers = with maintainers; [ copumpkin ]; 23 }; 24 25}