My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/twitter-common-collections/default.nix

25 lines
561 B

{ 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 ];
};
}