-
Notifications
You must be signed in to change notification settings - Fork 106
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
321e8ba clightning: fix build (Erik Arvstedt) 4456123 rtl: set explicit nodejs version (Erik Arvstedt) f2cb5bf update nixpkgs (Erik Arvstedt) Pull request description: ACKs for top commit: jonasnick: ACK 321e8ba Tree-SHA512: f15d29ca63d88e4253a6bfe5f310e80092f1dd2e932be41e9e35d60636b12e617ed5c9ddc9ee8a200646973a66603e776adf07f5bac82ce635499095a92340fc
- Loading branch information
Showing
8 changed files
with
71 additions
and
25 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
{ clightning, python3 }: | ||
|
||
clightning.override { | ||
python3 = python3.override { | ||
packageOverrides = self: super: { | ||
mistune = self.callPackage ./mistune.nix { | ||
version = "0.8.4"; | ||
sha256 = "59a3429db53c50b5c6bcc8a07f8848cb00d7dc8bdb431a4ab41920d201d4756e"; | ||
}; | ||
}; | ||
}; | ||
} |
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,27 @@ | ||
{ lib | ||
, buildPythonPackage | ||
, fetchPypi | ||
, nose | ||
, version | ||
, sha256 | ||
, format ? "setuptools" | ||
, extraMeta ? {} | ||
}: | ||
|
||
buildPythonPackage rec { | ||
inherit version format; | ||
pname = "mistune"; | ||
|
||
src = fetchPypi { | ||
inherit pname version sha256; | ||
}; | ||
|
||
buildInputs = [ nose ]; | ||
pythonImportsCheck = [ "mistune" ]; | ||
|
||
meta = with lib; { | ||
description = "The fastest markdown parser in pure Python"; | ||
homepage = "https://github.com/lepture/mistune"; | ||
license = licenses.bsd3; | ||
} // extraMeta; | ||
} |
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.