Merge pull request #25949 from bhipple/init/python-bitcoin-price-api

pythonPackages.bitcoin-price-api: init at 0.0.4
This commit is contained in:
Jörg Thalheim
2017-05-21 09:01:49 +01:00
committed by GitHub
3 changed files with 28 additions and 0 deletions

View File

@@ -0,0 +1,25 @@
{ lib, buildPythonPackage, fetchPypi
, dateutil, requests }:
buildPythonPackage rec {
pname = "bitcoin-price-api";
version = "0.0.4";
name = "${pname}-${version}";
src = fetchPypi {
inherit pname version;
sha256 = "bc68076f9632aaa9a8009d916d67a709c1e045dd904cfc7a3e8be33960d32029";
};
propagatedBuildInputs = [ dateutil requests ];
# No tests in archive
doCheck = false;
meta = {
homepage = "http://github.com/dursk/bitcoin-price-api";
description = "Price APIs for bitcoin exchanges";
license = with lib.licenses; [ mit ];
maintainers = with lib.maintainers; [ bhipple ];
};
}