nixpkgs/pkgs/development/python-modules/block-io/default.nix

40 lines
1.0 KiB
Nix
Raw Normal View History

{ stdenv, fetchPypi, buildPythonPackage, base58, ecdsa, pycryptodome, requests, six, setuptools }:
2018-06-26 15:28:36 +01:00
buildPythonPackage rec {
pname = "block-io";
2020-08-16 18:30:53 +01:00
version = "1.1.15";
2018-06-26 15:28:36 +01:00
src = fetchPypi {
inherit pname version;
2020-08-16 18:30:53 +01:00
sha256 = "97ea037a67af72037cb08cec7e0a9f7866ecdfaa1a8c8ebcc0f4b9359a1516d7";
2018-06-26 15:28:36 +01:00
};
propagatedBuildInputs = [
base58
ecdsa
pycryptodome
requests
six
setuptools
2018-06-26 15:28:36 +01:00
];
preConfigure = ''
substituteInPlace setup.py \
2020-11-29 18:18:37 +00:00
--replace "ecdsa==0.15" "ecdsa>=0.15" \
--replace "base58==1.0.3" "base58>=1.0.3"
'';
2018-06-26 15:28:36 +01:00
# Tests needs a BlockIO API key to run properly
# https://github.com/BlockIo/block_io-python/blob/79006bc8974544b70a2d8e9f19c759941d32648e/test.py#L18
doCheck = false;
pythonImportsCheck = [ "block_io" ];
2018-06-26 15:28:36 +01:00
meta = with stdenv.lib; {
description = "Integrate Bitcoin, Dogecoin and Litecoin in your Python applications using block.io";
homepage = "https://github.com/BlockIo/block_io-python";
2018-06-26 15:28:36 +01:00
license = licenses.mit;
maintainers = with maintainers; [ nyanloutre ];
};
}