69b393ace5
These URLs are reported as problematic by Repology. It could be a permanent redirection or the page does not exist anymore
40 lines
769 B
Nix
40 lines
769 B
Nix
{ stdenv
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, pytz
|
|
, gflags
|
|
, dateutil
|
|
, mox
|
|
, python
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "google-apputils";
|
|
version = "0.4.2";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "47959d0651c32102c10ad919b8a0ffe0ae85f44b8457ddcf2bdc0358fb03dc29";
|
|
};
|
|
|
|
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 stdenv.lib; {
|
|
description = "Google Application Utilities for Python";
|
|
homepage = "https://github.com/google/google-apputils";
|
|
license = licenses.asl20;
|
|
};
|
|
|
|
}
|