remove absl-py, change to buildInputs

This commit is contained in:
Jethro Kuan 2018-11-11 00:10:59 +08:00 committed by Frederik Rietdijk
parent 5165ecb7f6
commit 3723b2d8ab
1 changed files with 1 additions and 2 deletions

View File

@ -3,7 +3,6 @@
, fetchPypi , fetchPypi
, six , six
, enum34 , enum34
, absl-py
}: }:
buildPythonPackage rec { buildPythonPackage rec {
@ -16,7 +15,7 @@ buildPythonPackage rec {
}; };
propogatedBuildInputs = [ six enum34 ]; buildInputs = [ six enum34 ];
# PyPI archive does not ship with tests # PyPI archive does not ship with tests
doCheck= false; doCheck= false;