Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / python-modules / absl-py / default.nix
blob00846838b25deb310d324c625b0c5b4c3a5d4e4a
1 { buildPythonPackage
2 , lib
3 , pythonOlder
4 , fetchPypi
5 , six
6 , enum34
7 }:
9 buildPythonPackage rec {
10   pname = "absl-py";
11   version = "1.4.0";
13   src = fetchPypi {
14     inherit pname version;
15     hash = "sha256-0sJE0BBIukdufAgL0sbfXhQdIR3oAiNGDVs7iipYQz0=";
16   };
18   propagatedBuildInputs = [
19     six
20   ] ++ lib.optionals (pythonOlder "3.4") [
21     enum34
22   ];
24   # checks use bazel; should be revisited
25   doCheck = false;
27   meta = {
28     description = "Abseil Python Common Libraries";
29     homepage = "https://github.com/abseil/abseil-py";
30     license = lib.licenses.asl20;
31     maintainers = with lib.maintainers; [ ];
32   };