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

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

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

  propagatedBuildInputs = [ twitter-common-lang ];

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

}