python3Packages.tensorflow-metadata: fix build

This commit is contained in:
Martin Weinelt
2022-03-14 00:29:12 +01:00
parent 97ce541711
commit d233cd039c
2 changed files with 5 additions and 9 deletions
@@ -2,15 +2,6 @@ diff --git a/setup.py b/setup.py
index 7a09b2f..94c5aa6 100644
--- a/setup.py
+++ b/setup.py
@@ -125,7 +125,7 @@ setup(
],
namespace_packages=[],
install_requires=[
- 'absl-py>=0.9,<0.13',
+ 'absl-py>=0.9',
'googleapis-common-protos>=1.52.0,<2',
'protobuf>=3.13,<4',
],
@@ -137,8 +137,5 @@ setup(
long_description_content_type='text/markdown',
keywords='tensorflow metadata tfx',
@@ -2,6 +2,7 @@
, buildPythonPackage
, fetchFromGitHub
, googleapis-common-protos
, protobuf
, lib
}:
@@ -31,8 +32,12 @@ buildPythonPackage rec {
propagatedBuildInputs = [
absl-py
googleapis-common-protos
protobuf
];
# has no tests
doCheck = false;
pythonImportsCheck = [
"tensorflow_metadata"
];