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

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

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

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

}