python-packages/runes: init at 0.4.0
Signed-off-by: William Casarin <jb55@jb55.com>
This commit is contained in:
parent
570e271695
commit
71eccb73d6
@ -11,6 +11,7 @@ in {
|
||||
urldecode = callPackage ./urldecode {};
|
||||
chromalog = callPackage ./chromalog {};
|
||||
txzmq = callPackage ./txzmq {};
|
||||
runes = callPackage ./runes {};
|
||||
|
||||
joinmarketbase = joinmarketPkg ./jmbase;
|
||||
joinmarketclient = joinmarketPkg ./jmclient;
|
||||
|
22
pkgs/python-packages/runes/default.nix
Normal file
22
pkgs/python-packages/runes/default.nix
Normal file
@ -0,0 +1,22 @@
|
||||
{ sha256, lib, buildPythonPackage, fetchFromGitHub }:
|
||||
|
||||
buildPythonPackage {
|
||||
pname = "runes";
|
||||
version = "0.4.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
repo = "runes";
|
||||
owner = "rustyrussell";
|
||||
rev = "7e3d7648db844ce2c78cc3e9e4f872f827252251";
|
||||
sha256 = "sha256-e0iGLV/57gCpqA7vrW6JMFM0R6iAq5oFwUpZoGySwfs=";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ sha256 ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Runes for authentication (like macaroons only simpler)";
|
||||
homepage = "https://github.com/rustyrussell/runes";
|
||||
maintainers = with maintainers; [ jb55 ];
|
||||
license = licenses.mit;
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue
Block a user