croc: 10.1.1 -> 10.1.3 (#364662)
[NixPkgs.git] / pkgs / applications / blockchains / cryptop / default.nix
blob61ab913b2e15624e733dd95ab04f77c137083eee
2   lib,
3   buildPythonApplication,
4   fetchPypi,
5   requests,
6   requests-cache,
7   setuptools,
8 }:
10 buildPythonApplication rec {
11   pname = "cryptop";
12   version = "0.2.0";
14   src = fetchPypi {
15     inherit pname version;
16     sha256 = "0akrrz735vjfrm78plwyg84vabj0x3qficq9xxmy9kr40fhdkzpb";
17   };
19   propagatedBuildInputs = [
20     setuptools
21     requests
22     requests-cache
23   ];
25   # No tests in archive
26   doCheck = false;
28   meta = {
29     homepage = "https://github.com/huwwp/cryptop";
30     description = "Command line Cryptocurrency Portfolio";
31     license = with lib.licenses; [ mit ];
32     maintainers = with lib.maintainers; [ bhipple ];
33     mainProgram = "cryptop";
34   };