python-packages/runes: init at 0.4.0

Signed-off-by: William Casarin <jb55@jb55.com>
This commit is contained in:
William Casarin 2022-02-20 19:42:42 -08:00 committed by Erik Arvstedt
parent 570e271695
commit 71eccb73d6
No known key found for this signature in database
GPG Key ID: 33312B944DD97846
2 changed files with 23 additions and 0 deletions

View File

@ -11,6 +11,7 @@ in {
urldecode = callPackage ./urldecode {};
chromalog = callPackage ./chromalog {};
txzmq = callPackage ./txzmq {};
runes = callPackage ./runes {};
joinmarketbase = joinmarketPkg ./jmbase;
joinmarketclient = joinmarketPkg ./jmclient;

View 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;
};
}