3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/python-modules/absl-py/default.nix

28 lines
561 B
Nix
Raw Normal View History

2017-11-14 19:27:13 +00:00
{ buildPythonPackage
, lib
, fetchPypi
, six
}:
buildPythonPackage rec {
pname = "absl-py";
2018-11-04 10:34:52 +00:00
version = "0.6.1";
2017-11-14 19:27:13 +00:00
src = fetchPypi {
inherit pname version;
2018-11-04 10:34:52 +00:00
sha256 = "87519e3b91a3d573664c6e2ee33df582bb68dca6642ae3cf3a4361b1c0a4e9d6";
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 ];
};
}