mirror of
https://github.com/Feliix42/dotfiles.git
synced 2024-11-22 14:06:30 +00:00
43 lines
1.1 KiB
Nix
43 lines
1.1 KiB
Nix
# This file is not linked
|
|
{ pkgs, lib, ... }:
|
|
|
|
{
|
|
environment.systemPackages = with pkgs;
|
|
let
|
|
my-python-packages = python-packages: with python-packages; [
|
|
pygments
|
|
pandas
|
|
numpy
|
|
pylint
|
|
# rpy2
|
|
# NOTE(feliix42): due to security vulnerability in the naughty zone for now.
|
|
|
|
# NOTE(feliix42): broken at the moment
|
|
# jupyter
|
|
|
|
## xDSL
|
|
(
|
|
buildPythonPackage rec {
|
|
pname = "xdsl";
|
|
version = "0.21.1";
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "sha256-oh618MGF7YmQ0Y8tl7IKSu7c1n0DnW+oRbx5eeDV18w=";
|
|
#sha256 = lib.fakeSha256;
|
|
};
|
|
doCheck = false;
|
|
propagatedBuildInputs = [
|
|
pkgs.python3Packages.pip
|
|
pkgs.python3Packages.pytest
|
|
pkgs.python3Packages.filecheck
|
|
# pkgs.python3Packages.lit
|
|
pkgs.lit
|
|
pkgs.python3Packages.immutabledict
|
|
];
|
|
}
|
|
)
|
|
];
|
|
python-with-my-packages = python3.withPackages my-python-packages;
|
|
in
|
|
[ python-with-my-packages ];
|
|
}
|