bpytop: remove unused input

This commit is contained in:
Fabian Affolter
2021-04-28 08:49:32 +02:00
committed by GitHub
parent b5b575d276
commit b3efb61263

View File

@@ -1,4 +1,9 @@
{ lib, stdenv, python3Packages, fetchFromGitHub, makeWrapper, substituteAll }:
{ lib
, stdenv
, python3Packages
, fetchFromGitHub
, makeWrapper
}:
stdenv.mkDerivation rec {
pname = "bpytop";
@@ -12,6 +17,7 @@ stdenv.mkDerivation rec {
};
nativeBuildInputs = [ makeWrapper ];
propagatedBuildInputs = with python3Packages; [ python psutil ];
dontBuild = true;