99 lines
2.6 KiB
Nix
99 lines
2.6 KiB
Nix
final: prev:
|
|
|
|
let
|
|
myPackages = pypackages: with pypackages; [
|
|
black
|
|
dateutil
|
|
flake8
|
|
ipython
|
|
jedi
|
|
jedi-language-server
|
|
mypy
|
|
pylint
|
|
pyyaml
|
|
responses
|
|
ruamel-yaml
|
|
tox
|
|
typing-extensions
|
|
virtualenv
|
|
];
|
|
|
|
myPython = prev.python3.withPackages myPackages;
|
|
macOver = file: og:
|
|
if prev.stdenv.isDarwin then
|
|
(prev.callPackage file {}) else
|
|
prev."${og}";
|
|
|
|
buildFirefoxXpiAddon = final.nur.repos.rycee.lib.buildFirefoxXpiAddon;
|
|
|
|
is2405 = prev.lib.versionAtLeast prev.lib.version "24";
|
|
|
|
in rec {
|
|
gregpy = myPython;
|
|
|
|
## Testing adding python packages in the correct manner
|
|
pythonPackagesExtensions = (prev.pythonPackagesExtensions or []) ++ [
|
|
(python-final: python-prev: let cp = python-final.callPackage; in {
|
|
django-rapyd-modernauth = cp ./django-rapyd-modernauth.nix {};
|
|
graypy = cp ./graypy.nix {};
|
|
itg-django-utils = cp ./itg-django-utils.nix {};
|
|
xonsh-apipenv = cp ./xonsh-apipenv.nix {};
|
|
xonsh-direnv = cp ./xonsh-direnv.nix {};
|
|
xontrib-vox = cp ./xonsh-vox.nix {};
|
|
|
|
home-assistant-chip-core = python-prev.home-assistant-chip-core.override {
|
|
openssl_1_1 = final.openssl;
|
|
};
|
|
})
|
|
];
|
|
|
|
# My own packages
|
|
aacs = prev.callPackage ./aacs.nix {};
|
|
configure_aws_creds = prev.callPackage ./configure_aws_creds.nix {};
|
|
create_ssl = prev.callPackage ./create_ssl.nix {};
|
|
hms = prev.callPackage ./hms {
|
|
pkgs = final.pkgs;
|
|
};
|
|
enwiki-dump = prev.callPackage ./enwiki-dump.nix {};
|
|
setup-ssh = prev.callPackage ./setup-ssh {
|
|
pkgs = final.pkgs;
|
|
};
|
|
|
|
# Overrides of packages
|
|
brew = prev.callPackage ./homebrew.nix {};
|
|
copier = (if is2405 then prev.copier.overridePythonAttrs (old: {
|
|
version = "9.1.0";
|
|
src = final.fetchFromGitHub {
|
|
owner = "copier-org";
|
|
repo = "copier";
|
|
rev = "v9.1.0";
|
|
hash = "sha256-x5r7Xv4lAOMkR+UIEeSY7LvbYMLpTWYuICYe9ygz1tA=";
|
|
postFetch = "rm $out/tests/demo/doc/ma*ana.txt";
|
|
};
|
|
}) else prev.copier);
|
|
inject = prev.callPackage ./inject.nix { inherit (final) pkgs; };
|
|
libbluray-custom = prev.libbluray.override {
|
|
withAACS = true;
|
|
withBDplus = true;
|
|
};
|
|
template = prev.callPackage ./template.nix { };
|
|
handbrake = prev.handbrake.override {
|
|
libbluray = libbluray-custom;
|
|
};
|
|
libvirt-greg = prev.libvirt.overrideAttrs {
|
|
postInstall = prev.libvirt.postInstall + "rm -r $out/lib/systemd/system/libvirtd.service";
|
|
};
|
|
pipenv-ivr = prev.callPackage ./pipenv.nix { };
|
|
|
|
xonsh = prev.xonsh.overridePythonAttrs (old: rec{
|
|
python3 = final.gregpy;
|
|
propagatedBuildInputs = with final.gregpy.pkgs; old.propagatedBuildInputs ++ [
|
|
responses
|
|
ruamel-yaml
|
|
xonsh-apipenv
|
|
xonsh-direnv
|
|
xontrib-vox
|
|
];
|
|
});
|
|
}
|