-
Notifications
You must be signed in to change notification settings - Fork 109
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
e658209 run-tests.sh: fix building tests for Nix ≥ 2.15 (Erik Arvstedt) bb2e88c fix python packages for nixos 23.05 (Erik Arvstedt) e31cc68 run-tests: make compatible with new shellcheck version (Erik Arvstedt) 76dc7b9 examples/deploy-container.sh: add extra-container version check (Erik Arvstedt) 6c2d110 update the required extra-container version for nixos 23.05 (Erik Arvstedt) e2cce7d update to nixos 23.05 (Erik Arvstedt) 55c64d8 update nixpkgs (Erik Arvstedt) bd77b89 rtl, clightning-rest: update to nodejs 18 (Erik Arvstedt) Pull request description: ACKs for top commit: jonasnick: ACK e658209 Tree-SHA512: 5814f56e469ad384dfb81bc11f9ac256a35cd2647e7fd997b14f84927448fbb880b0b1cee3bdf5a2b926760b74aab291e901e67a0759d43ffaf705ff6b741b97
- Loading branch information
Showing
26 changed files
with
201 additions
and
238 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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
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 |
---|---|---|
@@ -0,0 +1,40 @@ | ||
{ lib | ||
, buildPythonPackage | ||
, fetchFromGitHub | ||
, fetchpatch | ||
, unittestCheckHook | ||
}: | ||
|
||
buildPythonPackage rec { | ||
pname = "bitstring"; | ||
version = "3.1.9"; | ||
|
||
src = fetchFromGitHub { | ||
owner = "scott-griffiths"; | ||
repo = pname; | ||
rev = "bitstring-${version}"; | ||
sha256 = "0y2kcq58psvl038r6dhahhlhp1wjgr5zsms45wyz1naq6ri8x9qa"; | ||
}; | ||
|
||
patches = [ | ||
(fetchpatch { | ||
name = "fix-running-unit-tests-using-unittest-hook.patch"; | ||
url = "https://github.com/scott-griffiths/bitstring/commit/e5ee3fd41cad2ea761f4450b13b0424ae7262331.patch"; | ||
hash = "sha256-+ZGywIfQQcYXJlYZBi402ONnysYm66G5zE4duJE40h8="; | ||
}) | ||
]; | ||
|
||
checkInputs = [ unittestCheckHook ]; | ||
|
||
unittestFlagsArray = [ "-s" "test" ]; | ||
|
||
pythonImportsCheck = [ "bitstring" ]; | ||
|
||
meta = with lib; { | ||
description = "Module for binary data manipulation"; | ||
homepage = "https://github.com/scott-griffiths/bitstring"; | ||
license = licenses.mit; | ||
platforms = platforms.unix; | ||
maintainers = with maintainers; [ bjornfor ]; | ||
}; | ||
} |
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
Oops, something went wrong.