1{ lib 2, buildPythonPackage 3, fetchPypi 4}: 5 6buildPythonPackage rec { 7 pname = "twitter.common.lang"; 8 version = "0.3.11"; 9 10 src = fetchPypi { 11 inherit pname version; 12 sha256 = "6e967ca2b5bb96ea749d21052f45b18e37deb5cc160eb12c64a8f1cb9dba7a22"; 13 }; 14 15 meta = with lib; { 16 description = "Twitter's 2.x / 3.x compatibility swiss-army knife"; 17 homepage = "https://twitter.github.io/commons/"; 18 license = licenses.asl20; 19 maintainers = with maintainers; [ copumpkin ]; 20 }; 21 22}