28 lines
562 B
Nix
28 lines
562 B
Nix
{ buildPythonPackage
|
|
, lib
|
|
, fetchPypi
|
|
, six
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "absl-py";
|
|
version = "0.1.10";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "908eba9a96a37c10f10074aba57d685070b814906b02a1ea2cf54bb10a6b8c74";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
}
|