mirror of
https://github.com/Smaug123/nix-dotfiles
synced 2025-10-06 15:08:41 +00:00
17 lines
419 B
Nix
17 lines
419 B
Nix
{ pkgs }:
|
|
|
|
let my-python-packages = python-packages: with python-packages; [
|
|
pip
|
|
mathlibtools
|
|
];
|
|
in
|
|
|
|
let packageOverrides = self: super: {
|
|
# Test failures on darwin ("windows-1252"); just skip pytest
|
|
# (required for elan)
|
|
beautifulsoup4 = super.beautifulsoup4.overridePythonAttrs(old: { pytestCheckPhase="true"; });
|
|
};
|
|
in
|
|
|
|
(pkgs.python3.override { inherit packageOverrides; }).withPackages my-python-packages
|