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