-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use GitHub mirrors instead. Upstream Libre-SOC repos are sporadically…
… returning 502/504 Also add some missing `rev`s which correspond to the FOD hash. Currently the `rev` for ieee754fpu does not seem to match its FOD hash
- Loading branch information
1 parent
33866b0
commit e4b21a2
Showing
8 changed files
with
54 additions
and
31 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,20 @@ | ||
{ | ||
fetchgit, | ||
fetchFromGitHub, | ||
python39Packages, | ||
}: | ||
with python39Packages; | ||
buildPythonPackage { | ||
name = "pytest-output-to-files"; | ||
version = "unstable-2024-03-31"; | ||
|
||
src = fetchgit { | ||
url = "https://git.libre-soc.org/git/pytest-output-to-files.git"; | ||
sha256 = "sha256-ES8zZ9s6wGcqw60NoN4tZf/Dq/sBvl+UDYrXuOgfMxI="; | ||
# mirror of https://git.libre-soc.org/git/pytest-output-to-files.git | ||
src = fetchFromGitHub { | ||
owner = "Libre-SOC-mirrors"; | ||
repo = "pytest-output-to-files"; | ||
rev = "e4d64e643acb1cd6218fc61910ab6266d3da7573"; # HEAD @ version date | ||
hash = "sha256-ES8zZ9s6wGcqw60NoN4tZf/Dq/sBvl+UDYrXuOgfMxI="; | ||
}; | ||
|
||
|
||
nativeCheckInputs = [pytestCheckHook]; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters