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