summary refs log tree commit diff
path: root/pkgs/development/python-modules/bitcoin-price-api/default.nix
blob: c9d317a81c3c3e5e909aab5eb533761d1859d9bb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{ lib, buildPythonPackage, fetchPypi
, python-dateutil, requests }:

buildPythonPackage rec {
  pname = "bitcoin-price-api";
  version = "0.0.4";

  src = fetchPypi {
    inherit pname version;
    sha256 = "bc68076f9632aaa9a8009d916d67a709c1e045dd904cfc7a3e8be33960d32029";
  };

  propagatedBuildInputs = [ python-dateutil requests ];

  # No tests in archive
  doCheck = false;

  meta = {
    homepage = "https://github.com/dursk/bitcoin-price-api";
    description = "Price APIs for bitcoin exchanges";
    license = with lib.licenses; [ mit ];
    maintainers = with lib.maintainers; [ bhipple ];
  };
}