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