cryptop: move to by-name, cleanup (#431084)

This commit is contained in:
Yohann Boniface
2025-08-07 02:58:29 +02:00
committed by GitHub
2 changed files with 4 additions and 10 deletions
@@ -1,13 +1,9 @@
{
lib,
buildPythonApplication,
python3Packages,
fetchPypi,
requests,
requests-cache,
setuptools,
}:
buildPythonApplication rec {
python3Packages.buildPythonApplication rec {
pname = "cryptop";
version = "0.2.0";
format = "setuptools";
@@ -17,7 +13,7 @@ buildPythonApplication rec {
sha256 = "0akrrz735vjfrm78plwyg84vabj0x3qficq9xxmy9kr40fhdkzpb";
};
propagatedBuildInputs = [
propagatedBuildInputs = with python3Packages; [
setuptools
requests
requests-cache
@@ -29,7 +25,7 @@ buildPythonApplication rec {
meta = {
homepage = "https://github.com/huwwp/cryptop";
description = "Command line Cryptocurrency Portfolio";
license = with lib.licenses; [ mit ];
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ bhipple ];
mainProgram = "cryptop";
};
-2
View File
@@ -14180,8 +14180,6 @@ with pkgs;
inherit (darwin) autoSignDarwinBinariesHook;
};
cryptop = python3.pkgs.callPackage ../applications/blockchains/cryptop { };
elements = libsForQt5.callPackage ../applications/blockchains/elements {
withGui = true;
inherit (darwin) autoSignDarwinBinariesHook;