summary refs log tree commit diff
path: root/pkgs/development/python-modules/google-apputils/default.nix
blob: 321837f56aece637a01facd3dd8e411d3691955d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
{ lib
, buildPythonPackage
, fetchPypi
, isPy3k
, pytz
, gflags
, dateutil
, mox
, python
}:

buildPythonPackage rec {
  pname = "google-apputils";
  version = "0.4.2";
  disabled = isPy3k;

  src = fetchPypi {
    inherit pname version;
    sha256 = "0afw0gxmh0yw5g7xsmw49gs8bbp0zyhbh6fr1b0h48f3a439v5a7";
  };

  preConfigure = ''
    sed -i '/ez_setup/d' setup.py
  '';

  propagatedBuildInputs = [ pytz gflags dateutil mox ];

  checkPhase = ''
    ${python.executable} setup.py google_test
  '';

  # ERROR:root:Trying to access flag test_tmpdir before flags were parsed.
  doCheck = false;

  meta = with lib; {
    description = "Google Application Utilities for Python";
    homepage = "https://github.com/google/google-apputils";
    license = licenses.asl20;
    maintainers = with maintainers; [ SuperSandro2000 ];
  };
}