1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-16 18:03:22 +00:00
nixpkgs/pkgs/development/python-modules/absl-py/default.nix

28 lines
562 B
Nix
Raw Normal View History

2017-11-14 19:27:13 +00:00
{ buildPythonPackage
, lib
, fetchPypi
, six
}:
buildPythonPackage rec {
pname = "absl-py";
2018-04-04 19:00:26 +01:00
version = "0.1.13";
2017-11-14 19:27:13 +00:00
src = fetchPypi {
inherit pname version;
2018-04-04 19:00:26 +01:00
sha256 = "d160f7dc39f2f05ddc0bbf3a7bea4cc659fedc45fd9042e87346b24fe1cd00bb";
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 ];
};
}