mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-27 22:03:54 +03:00
Merge pull request #27778 from bhipple/feature/python-cryptop-init
pythonPackages.cryptop: init at 0.1.0
This commit is contained in:
commit
38e81eae36
24
pkgs/applications/altcoins/cryptop/default.nix
Normal file
24
pkgs/applications/altcoins/cryptop/default.nix
Normal file
@ -0,0 +1,24 @@
|
|||||||
|
{ lib, python2}:
|
||||||
|
|
||||||
|
python2.pkgs.buildPythonApplication rec {
|
||||||
|
pname = "cryptop";
|
||||||
|
version = "0.1.0";
|
||||||
|
name = "${pname}-${version}";
|
||||||
|
|
||||||
|
src = python2.pkgs.fetchPypi {
|
||||||
|
inherit pname version;
|
||||||
|
sha256 = "00glnlyig1aajh30knc5rnfbamwfxpg29js2db6mymjmfka8lbhh";
|
||||||
|
};
|
||||||
|
|
||||||
|
propagatedBuildInputs = [ python2.pkgs.requests ];
|
||||||
|
|
||||||
|
# No tests in archive
|
||||||
|
doCheck = false;
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
homepage = "http://github.com/huwwp/cryptop";
|
||||||
|
description = "Command line Cryptocurrency Portfolio";
|
||||||
|
license = with lib.licenses; [ mit ];
|
||||||
|
maintainers = with lib.maintainers; [ bhipple ];
|
||||||
|
};
|
||||||
|
}
|
@ -13382,6 +13382,8 @@ with pkgs;
|
|||||||
bitcoin = altcoins.bitcoin;
|
bitcoin = altcoins.bitcoin;
|
||||||
bitcoin-xt = altcoins.bitcoin-xt;
|
bitcoin-xt = altcoins.bitcoin-xt;
|
||||||
|
|
||||||
|
cryptop = callPackage ../applications/altcoins/cryptop { };
|
||||||
|
|
||||||
libbitcoin = callPackage ../tools/misc/libbitcoin/libbitcoin.nix {
|
libbitcoin = callPackage ../tools/misc/libbitcoin/libbitcoin.nix {
|
||||||
secp256k1 = secp256k1.override { enableECDH = true; };
|
secp256k1 = secp256k1.override { enableECDH = true; };
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user