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

29 lines
593 B
Nix
Raw Normal View History

2017-11-14 19:27:13 +00:00
{ buildPythonPackage
, lib
, fetchPypi
, six
}:
buildPythonPackage rec {
pname = "absl-py";
2017-11-24 19:36:20 +00:00
version = "0.1.5";
2017-11-14 19:27:13 +00:00
name = "${pname}-${version}";
src = fetchPypi {
inherit pname version;
2017-11-24 19:36:20 +00:00
sha256 = "94943ed0cd77077fe2d18e79b2f28d3e92f585f7d1c6edc75e640121f3c5d580";
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 ];
};
}