packages feed

cabal2nix-2.8.2: test/golden-test-cases/kawhi.nix.golden

{ mkDerivation, aeson, base, bytestring, exceptions, fetchurl
, http-client, http-conduit, http-types, mtl, safe, scientific
, smallcheck, tasty, tasty-hunit, tasty-quickcheck
, tasty-smallcheck, text
}:
mkDerivation {
  pname = "kawhi";
  version = "0.3.0";
  src = fetchurl {
    url = "http://example.org/";
    sha256 = "abc";
  };
  libraryHaskellDepends = [
    aeson base bytestring exceptions http-client http-conduit
    http-types mtl safe scientific text
  ];
  testHaskellDepends = [
    aeson base bytestring exceptions http-client http-types mtl
    scientific smallcheck tasty tasty-hunit tasty-quickcheck
    tasty-smallcheck text
  ];
  homepage = "https://github.com/thunky-monk/kawhi";
  description = "stats.NBA.com library";
  license = stdenv.lib.licenses.mit;
}