2017-11-14 19:27:13 +00:00
|
|
|
{ buildPythonPackage
|
|
|
|
, lib
|
|
|
|
, fetchPypi
|
|
|
|
, six
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "absl-py";
|
2018-08-30 16:41:24 +01:00
|
|
|
version = "0.4.1";
|
2017-11-14 19:27:13 +00:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2018-08-30 16:41:24 +01:00
|
|
|
sha256 = "1e6e70506fb4d867cf269af7bcc27b744c36bbc4c516f0f8ccf2039956deea72";
|
2017-11-14 19:27:13 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
propagatedBuildInputs = [ six ];
|
|
|
|
|
|
|
|
# checks use bazel; should be revisited
|
|
|
|
doCheck = false;
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "Abseil Python Common Libraries";
|
|
|
|
homepage = "https://github.com/abseil/abseil-py";
|
|
|
|
license = lib.licenses.asl20;
|
|
|
|
maintainers = with lib.maintainers; [ danharaj ];
|
|
|
|
};
|
|
|
|
}
|