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