12 lines
286 B
Nix
12 lines
286 B
Nix
{ pkgs, python }:
|
|
|
|
{
|
|
system-packages = with pkgs; {
|
|
cacert = cacert; # ticker (curl)
|
|
};
|
|
|
|
python-packages = with python.pkgs; {
|
|
yahooquery = (callPackage ./yahooquery.nix {}); # ticker
|
|
pyyaml = pyyaml; # ticker
|
|
};
|
|
}
|