droopy: remove macpath to migrate to py3.8

This commit is contained in:
freezeboy 2020-11-21 15:10:50 +01:00
parent 3716bb5e6c
commit 3533c4f517
2 changed files with 9 additions and 2 deletions

View file

@ -1,4 +1,4 @@
{ stdenv, lib, fetchFromGitHub, wrapPython }: { stdenv, lib, fetchFromGitHub, wrapPython, fetchpatch }:
with lib; with lib;
@ -13,6 +13,13 @@ stdenv.mkDerivation {
sha256 = "03i1arwyj9qpfyyvccl21lbpz3rnnp1hsadvc0b23nh1z2ng9sff"; sha256 = "03i1arwyj9qpfyyvccl21lbpz3rnnp1hsadvc0b23nh1z2ng9sff";
}; };
patches = [
(fetchpatch {
url = "https://patch-diff.githubusercontent.com/raw/stackp/Droopy/pull/30.patch";
sha256 = "Y6jBraKvVQAiScbvLwezSKeWY3vaAbhaNXEGNaItigQ=";
})
];
nativeBuildInputs = [ wrapPython ]; nativeBuildInputs = [ wrapPython ];
installPhase = '' installPhase = ''

View file

@ -20714,7 +20714,7 @@ in
buildServerGui = false; buildServerGui = false;
}; };
droopy = python37Packages.callPackage ../applications/networking/droopy { }; droopy = python3Packages.callPackage ../applications/networking/droopy { };
drumgizmo = callPackage ../applications/audio/drumgizmo { }; drumgizmo = callPackage ../applications/audio/drumgizmo { };