Skip to content

Commit

Permalink
Merge pull request #1214 from cpcloud/rpds-py
Browse files Browse the repository at this point in the history
fix: update rpds-py hash for 0.8.10 release
  • Loading branch information
cpcloud authored Jul 10, 2023
2 parents 3f9ccf9 + eaef3a4 commit 1769784
Show file tree
Hide file tree
Showing 6 changed files with 136 additions and 0 deletions.
1 change: 1 addition & 0 deletions overrides/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -2407,6 +2407,7 @@ lib.composeManyExtensions [
let
getCargoHash = version: {
"0.8.8" = "sha256-jg9oos4wqewIHe31c3DixIp6fssk742kqt4taWyOq4U=";
"0.8.10" = "sha256-D4pbEipVn1r5rrX+wDXi97nDZJyBlkdqhmbJSgQGTLU=";
}.${version} or (
lib.warn "Unknown rpds-py version: '${version}'. Please update getCargoHash." lib.fakeHash
);
Expand Down
1 change: 1 addition & 0 deletions tests/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -177,5 +177,6 @@ builtins.removeAttrs
pandas = callTest ./pandas { };
cairocffi-wheel = callTest ./cairocffi-wheel { };
cairocffi-no-wheel = callTest ./cairocffi-no-wheel { };
rpds-py = callTest ./rpds-py { };
}
skipTests
8 changes: 8 additions & 0 deletions tests/rpds-py/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{ lib, poetry2nix, python3 }:

poetry2nix.mkPoetryApplication {
python = python3;
pyproject = ./pyproject.toml;
poetrylock = ./poetry.lock;
src = lib.cleanSource ./.;
}
113 changes: 113 additions & 0 deletions tests/rpds-py/poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

13 changes: 13 additions & 0 deletions tests/rpds-py/pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
[tool.poetry]
name = "rpds-py-build"
version = "0.1.0"
description = ""
authors = ["Your Name <[email protected]>"]

[tool.poetry.dependencies]
python = "^3.9"
rpds-py = "^0.8"

[build-system]
requires = ["poetry-core>=1.5"]
build-backend = "poetry.core.masonry.api"
Empty file.

0 comments on commit 1769784

Please sign in to comment.