mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 18:26:45 +01:00
26 lines
558 B
Nix
26 lines
558 B
Nix
|
{ stdenv
|
||
|
, buildPythonPackage
|
||
|
, fetchPypi
|
||
|
, twitter-common-lang
|
||
|
}:
|
||
|
|
||
|
buildPythonPackage rec {
|
||
|
pname = "twitter.common.collections";
|
||
|
version = "0.3.9";
|
||
|
|
||
|
src = fetchPypi {
|
||
|
inherit pname version;
|
||
|
sha256 = "0wf8ks6y2kalx2inzayq0w4kh3kg25daik1ac7r6y79i03fslsc5";
|
||
|
};
|
||
|
|
||
|
propagatedBuildInputs = [ twitter-common-lang ];
|
||
|
|
||
|
meta = with stdenv.lib; {
|
||
|
description = "Twitter's common collections";
|
||
|
homepage = "https://twitter.github.io/commons/";
|
||
|
license = licenses.asl20;
|
||
|
maintainers = with maintainers; [ copumpkin ];
|
||
|
};
|
||
|
|
||
|
}
|