packages feed

cabal2nix-2.9.3: test/golden-test-cases/yahoo-finance-api.nix.golden

{ mkDerivation, aeson, base, doctest, either, Glob, hspec
, http-api-data, http-client, http-client-tls, mtl, safe, servant
, servant-client, stdenv, text, time, transformers, vector
}:
mkDerivation {
  pname = "yahoo-finance-api";
  version = "0.2.0.3";
  sha256 = "deadbeef";
  libraryHaskellDepends = [
    aeson base either http-api-data http-client mtl servant
    servant-client text time transformers vector
  ];
  testHaskellDepends = [
    base doctest either Glob hspec http-client http-client-tls mtl safe
    servant servant-client
  ];
  homepage = "https://github.com/cdepillabout/yahoo-finance-api";
  description = "Read quotes from Yahoo Finance API";
  license = stdenv.lib.licenses.bsd3;
}