bitcoinarmory: use buildPythonApplication

because mkPythonDerivation shouldn't be used directly anymore.
This commit is contained in:
Frederik Rietdijk 2017-10-20 10:12:28 +02:00
parent 7f43dd3b3b
commit 26b7a68596

View File

@ -7,9 +7,9 @@ let
version = "0.96.1";
sitePackages = pythonPackages.python.sitePackages;
inherit (pythonPackages) mkPythonDerivation pyqt4 psutil twisted;
inherit (pythonPackages) buildPythonApplication pyqt4 psutil twisted;
in mkPythonDerivation {
in buildPythonApplication {
name = "bitcoinarmory-${version}";
@ -21,6 +21,8 @@ in mkPythonDerivation {
sha256 = "0pjk5qx16n3kvs9py62666qkwp2awkgd87by4karbj7vk6p1l14h"; fetchSubmodules = true;
};
format = "other";
# FIXME bitcoind doesn't die on shutdown. Need some sort of patch to fix that.
#patches = [ ./shutdown-fix.patch ];