Skip to content

Commit

Permalink
update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
Johann Bahl committed Apr 11, 2024
1 parent 146cb5d commit e54e034
Show file tree
Hide file tree
Showing 2 changed files with 681 additions and 548 deletions.
10 changes: 8 additions & 2 deletions lib.nix
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,12 @@ let
scriv = super.scriv.overrideAttrs (old: {
buildInputs = (old.buildInputs or []) ++ [ super.setuptools ];
});
backports-tarfile = super.backports-tarfile.overrideAttrs (old: {
buildInputs = (old.buildInputs or []) ++ [ super.setuptools ];
});
docutils = super.docutils.overrideAttrs (old: {
buildInputs = (old.buildInputs or []) ++ [ super.flit-core ];
});
execnet = super.execnet.overrideAttrs (old: {
buildInputs = (old.buildInputs or []) ++ [ super.hatchling super.hatch-vcs ];
});
Expand Down Expand Up @@ -54,7 +60,7 @@ let
nh3 =
let
getCargoHash = version: {
"0.2.15" = "sha256-fetAE3cj9hh4SoPE72Bqco5ytUMiDqbazeS2MHdUibM=";
"0.2.17" = "sha256-WomlVzKOUfcgAWGJInSvZn9hm+bFpgc4nJbRiyPCU64=";
}.${version} or (
lib.warn "Unknown nh3 version: '${version}'. Please update getCargoHash." lib.fakeHash
);
Expand All @@ -78,7 +84,7 @@ let
cryptography =
let
getCargoHash = version: {
"41.0.7" = "sha256-VeZhKisCPDRvmSjGNwCgJJeVj65BZ0Ge+yvXbZw86Rw";
"42.0.5" = "sha256-aeZhKisCPDRvmSjGNwCgJJeVj65BZ0Ge+yvXbZw86Rw";
}.${version} or (
lib.warn "Unknown cryptography version: '${version}'. Please update getCargoHash." lib.fakeHash
);
Expand Down
Loading

0 comments on commit e54e034

Please sign in to comment.