python3Packages.tensorflow-metadata: 1.17.3 -> 1.21.0 (#529842)

This commit is contained in:
Peder Bergebakken Sundt
2026-06-09 17:26:29 +00:00
committed by GitHub
2 changed files with 14 additions and 8 deletions
@@ -1,13 +1,13 @@
diff --git a/setup.py b/setup.py
index 30ac370..a05812d 100644
index 9c2a17f..c7e120d 100644
--- a/setup.py
+++ b/setup.py
@@ -141,8 +141,4 @@ setup(
keywords='tensorflow metadata tfx',
download_url='https://github.com/tensorflow/metadata/tags',
@@ -154,8 +154,4 @@ setup(
keywords="tensorflow metadata tfx",
download_url="https://github.com/tensorflow/metadata/tags",
requires=[],
- cmdclass={
- 'build': _BuildCommand,
- 'bazel_build': _BazelBuildCommand,
- "build": _BuildCommand,
- "bazel_build": _BazelBuildCommand,
- },
)
@@ -14,18 +14,24 @@
buildPythonPackage (finalAttrs: {
pname = "tensorflow-metadata";
version = "1.17.3";
version = "1.21.0";
pyproject = true;
__structuredAttrs = true;
src = fetchFromGitHub {
owner = "tensorflow";
repo = "metadata";
tag = "v${finalAttrs.version}";
hash = "sha256-4xj2JfQryGy7a9ho9/JJtyg+0H5VLQzq9JevOmOWJZk=";
hash = "sha256-k+SJmR5n4S31wpSuMhJwrjJfX/Bow0QwLpw+TwRPS7U=";
};
patches = [ ./build.patch ];
postPatch = ''
substituteInPlace pyproject.toml \
--replace-fail "setuptools<70" "setuptools"
'';
# Default build pulls in Bazel + extra deps, given the actual build
# is literally three lines (see below) - replace it with custom build.
preBuild = ''