joinmarket: add pkg and local dependencies

This commit is contained in:
nixbitcoin
2020-09-22 13:43:08 +00:00
parent a9c163c624
commit f00d1d24c5
14 changed files with 331 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
{ lib, buildPythonPackage, fetchPypi }:
buildPythonPackage rec {
pname = "urldecode";
version = "0.1";
src = fetchPypi {
inherit pname version;
sha256 = "0w8my7kdwxppsfzzi1b2cxhypm6r1fsrnb2hnd752axq4gfsddjj";
};
meta = with lib; {
description = "A simple function to decode an encoded url";
homepage = "https://github.com/jennyq/urldecode";
maintainers = with maintainers; [ nixbitcoin ];
};
}