Skip to content

Commit 1769784

Browse files
authored
Merge pull request #1214 from cpcloud/rpds-py
fix: update rpds-py hash for 0.8.10 release
2 parents 3f9ccf9 + eaef3a4 commit 1769784

6 files changed

Lines changed: 136 additions & 0 deletions

File tree

overrides/default.nix

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2407,6 +2407,7 @@ lib.composeManyExtensions [
24072407
let
24082408
getCargoHash = version: {
24092409
"0.8.8" = "sha256-jg9oos4wqewIHe31c3DixIp6fssk742kqt4taWyOq4U=";
2410+
"0.8.10" = "sha256-D4pbEipVn1r5rrX+wDXi97nDZJyBlkdqhmbJSgQGTLU=";
24102411
}.${version} or (
24112412
lib.warn "Unknown rpds-py version: '${version}'. Please update getCargoHash." lib.fakeHash
24122413
);

tests/default.nix

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -177,5 +177,6 @@ builtins.removeAttrs
177177
pandas = callTest ./pandas { };
178178
cairocffi-wheel = callTest ./cairocffi-wheel { };
179179
cairocffi-no-wheel = callTest ./cairocffi-no-wheel { };
180+
rpds-py = callTest ./rpds-py { };
180181
}
181182
skipTests

tests/rpds-py/default.nix

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{ lib, poetry2nix, python3 }:
2+
3+
poetry2nix.mkPoetryApplication {
4+
python = python3;
5+
pyproject = ./pyproject.toml;
6+
poetrylock = ./poetry.lock;
7+
src = lib.cleanSource ./.;
8+
}

tests/rpds-py/poetry.lock

Lines changed: 113 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

tests/rpds-py/pyproject.toml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
[tool.poetry]
2+
name = "rpds-py-build"
3+
version = "0.1.0"
4+
description = ""
5+
authors = ["Your Name <you@example.com>"]
6+
7+
[tool.poetry.dependencies]
8+
python = "^3.9"
9+
rpds-py = "^0.8"
10+
11+
[build-system]
12+
requires = ["poetry-core>=1.5"]
13+
build-backend = "poetry.core.masonry.api"

tests/rpds-py/rpds_py_build/__init__.py

Whitespace-only changes.

0 commit comments

Comments
 (0)