Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at devShellTools-shell 36 lines 692 B view raw
1{ 2 lib, 3 buildPythonApplication, 4 fetchPypi, 5 requests, 6 requests-cache, 7 setuptools, 8}: 9 10buildPythonApplication rec { 11 pname = "cryptop"; 12 version = "0.2.0"; 13 format = "setuptools"; 14 15 src = fetchPypi { 16 inherit pname version; 17 sha256 = "0akrrz735vjfrm78plwyg84vabj0x3qficq9xxmy9kr40fhdkzpb"; 18 }; 19 20 propagatedBuildInputs = [ 21 setuptools 22 requests 23 requests-cache 24 ]; 25 26 # No tests in archive 27 doCheck = false; 28 29 meta = { 30 homepage = "https://github.com/huwwp/cryptop"; 31 description = "Command line Cryptocurrency Portfolio"; 32 license = with lib.licenses; [ mit ]; 33 maintainers = with lib.maintainers; [ bhipple ]; 34 mainProgram = "cryptop"; 35 }; 36}