1{
2 lib,
3 buildPythonPackage,
4 fetchPypi,
5}:
6
7buildPythonPackage rec {
8 pname = "twitter.common.lang";
9 version = "0.3.11";
10
11 src = fetchPypi {
12 inherit pname version;
13 sha256 = "6e967ca2b5bb96ea749d21052f45b18e37deb5cc160eb12c64a8f1cb9dba7a22";
14 };
15
16 meta = with lib; {
17 description = "Twitter's 2.x / 3.x compatibility swiss-army knife";
18 homepage = "https://twitter.github.io/commons/";
19 license = licenses.asl20;
20 maintainers = with maintainers; [ copumpkin ];
21 };
22}