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