1{ lib, buildPythonPackage, fetchPypi 2, dateutil, requests }: 3 4buildPythonPackage rec { 5 pname = "bitcoin-price-api"; 6 version = "0.0.4"; 7 name = "${pname}-${version}"; 8 9 src = fetchPypi { 10 inherit pname version; 11 sha256 = "bc68076f9632aaa9a8009d916d67a709c1e045dd904cfc7a3e8be33960d32029"; 12 }; 13 14 propagatedBuildInputs = [ dateutil requests ]; 15 16 # No tests in archive 17 doCheck = false; 18 19 meta = { 20 homepage = http://github.com/dursk/bitcoin-price-api; 21 description = "Price APIs for bitcoin exchanges"; 22 license = with lib.licenses; [ mit ]; 23 maintainers = with lib.maintainers; [ bhipple ]; 24 }; 25}