Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / twitter-common-collections / default.nix
blob644a97d2b2ec08d8b0c5099b38bfa28e4171148d
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , twitter-common-lang
5 }:
7 buildPythonPackage rec {
8   pname   = "twitter.common.collections";
9   version = "0.3.11";
11   src = fetchPypi {
12     inherit pname version;
13     sha256 = "ede4caff74928156f7ff38dac9b0811893de41966c39cd5b2fdea53418349ca8";
14   };
16   propagatedBuildInputs = [ twitter-common-lang ];
18   meta = with lib; {
19     description = "Twitter's common collections";
20     homepage    = "https://twitter.github.io/commons/";
21     license     = licenses.asl20;
22     maintainers = with maintainers; [ copumpkin ];
23   };