Files
nixos/overlays/default.nix
T

58 lines
1.2 KiB
Nix

_final: prev:
let
myPackages =
pypackages: with pypackages; [
black
build
dateutil
ipython
mypy
pylint
pyyaml
responses
ruamel-yaml
setuptools
tox
typing-extensions
virtualenv
];
myPython = prev.python312.withPackages myPackages;
in
rec {
gregpy = myPython;
## Testing adding python packages in the correct manner
pythonPackagesExtensions = (prev.pythonPackagesExtensions or [ ]) ++ [
(
python-final: _:
let
cp = python-final.callPackage;
in
{
daikinone = cp ./daikinone.nix { };
xonsh-apipenv = cp ./xonsh-apipenv.nix { };
}
)
];
# My own packages
enwiki-dump = prev.callPackage ./enwiki-dump.nix { };
qemu = prev.qemu.override { sdlSupport = true; };
# Overrides of packages
libbluray-custom = prev.libbluray.override {
withAACS = true;
withBDplus = true;
};
handbrake = prev.handbrake.override { libbluray = libbluray-custom; };
pipenv-ivr = prev.callPackage ./pipenv.nix { };
OVMFFull = prev.OVMFFull.override {
secureBoot = true;
msVarsTemplate = true;
tpmSupport = true;
};
}