Merge pull request #119126 from fabaff/pycomfoconnect
[NixPkgs.git] / pkgs / development / python-modules / bitcoin-price-api / default.nix
blob3e74c17f3be86be94f6ae675f13b59023360b5f4
1 { lib, buildPythonPackage, fetchPypi
2 , dateutil, requests }:
4 buildPythonPackage rec {
5   pname = "bitcoin-price-api";
6   version = "0.0.4";
8   src = fetchPypi {
9     inherit pname version;
10     sha256 = "bc68076f9632aaa9a8009d916d67a709c1e045dd904cfc7a3e8be33960d32029";
11   };
13   propagatedBuildInputs = [ dateutil requests ];
15   # No tests in archive
16   doCheck = false;
18   meta = {
19     homepage = "https://github.com/dursk/bitcoin-price-api";
20     description = "Price APIs for bitcoin exchanges";
21     license = with lib.licenses; [ mit ];
22     maintainers = with lib.maintainers; [ bhipple ];
23   };