1{
2 buildPythonPackage,
3 lib,
4 fetchPypi,
5 setuptools,
6 six,
7}:
8
9buildPythonPackage rec {
10 pname = "absl-py";
11 version = "2.1.0";
12 pyproject = true;
13
14 src = fetchPypi {
15 inherit pname version;
16 hash = "sha256-eCB5DvuzFnOc3otOGTVyQ/w2CKFSAkKIUT3ZaNfZWf8=";
17 };
18
19 nativeBuildInputs = [ setuptools ];
20
21 propagatedBuildInputs = [ six ];
22
23 # checks use bazel; should be revisited
24 doCheck = false;
25
26 meta = {
27 description = "Abseil Python Common Libraries";
28 homepage = "https://github.com/abseil/abseil-py";
29 license = lib.licenses.asl20;
30 maintainers = [ ];
31 };
32}