about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/twitter-common-options/default.nix
blob: b3ae7f7f5d94c4db661a0eea2b718e61976eec52 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{ lib
, buildPythonPackage
, fetchPypi
}:

buildPythonPackage rec {
  pname   = "twitter.common.options";
  version = "0.3.11";

  src = fetchPypi {
    inherit pname version;
    sha256 = "a495bcdffc410039bc4166f1a30c2caa3c92769d7a161a4a39d3651836dd27e1";
  };

  meta = with lib; {
    description = "Twitter's optparse wrapper";
    homepage    = "https://twitter.github.io/commons/";
    license     = licenses.asl20;
    maintainers = with maintainers; [ copumpkin ];
  };

}