python-packages: add workaround to reenable requirements checking

This commit is contained in:
Erik Arvstedt 2023-12-12 11:57:43 +01:00
parent dc1033f1c8
commit 1c07c5fa5c
No known key found for this signature in database
GPG key ID: 33312B944DD97846
14 changed files with 38 additions and 26 deletions

View file

@ -1,6 +1,6 @@
{ version, src, lib, buildPythonPackage, fetchurl, txtorcon, cryptography, pyopenssl, libnacl, joinmarketbase }:
{ version, src, lib, buildPythonPackageWithDepsCheck, fetchurl, txtorcon, cryptography, pyopenssl, libnacl, joinmarketbase }:
buildPythonPackage rec {
buildPythonPackageWithDepsCheck rec {
pname = "joinmarketdaemon";
inherit version src;
@ -23,6 +23,7 @@ buildPythonPackage rec {
pythonImportsCheck = [
"jmdaemon"
];
meta = with lib; {
description = "Client library for Bitcoin coinjoins";
homepage = "https://github.com/Joinmarket-Org/joinmarket-clientserver";