-
-
Notifications
You must be signed in to change notification settings - Fork 15.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
pythonPackages.swifter: 0.304 #90046
Conversation
pandas, psutil, dask, tqdm, ipywidgets, numba, bleach, parso, distributed }: | ||
buildPythonPackage rec { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
pandas, psutil, dask, tqdm, ipywidgets, numba, bleach, parso, distributed }: | |
buildPythonPackage rec { | |
pandas, psutil, dask, tqdm, ipywidgets, numba, bleach, parso, distributed }: | |
buildPythonPackage rec { |
|
||
pythonImportsCheck = [ "swifter" ]; | ||
checkPhase = '' | ||
nosetests |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can this use pytestCheckHook?
# Tests require extra dependencies | ||
doCheck = true; | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
# Tests require extra dependencies | |
doCheck = true; |
@moritzschaefer please fix the merge conflict. |
Thanks for your response! As discussed here (#89213), I refrain now from adding python packages this way. I think NUR is a better destination for it. Sorry for not having colsed this |
As it was extremely difficult for me to install swifter, here is how I did it: {
description = "Your desc here";
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
};
outputs = inputs:
let
nixpkgs = inputs.nixpkgs;
system = "x86_64-linux";
pkgs = (import nixpkgs { inherit system; }).pkgs;
in {
devShell."${system}" = pkgs.mkShell {
buildInputs = with pkgs; [ python3Full clangStdenv ];
shellHook = ''
source ./.venv/bin/activate
export LD_LIBRARY_PATH=${nixpkgs.lib.makeLibraryPath [pkgs.stdenv.cc.cc]}
'';
};
};
} requirements.txt #other packages
swifter then the first time, do: python -m venv .venv
source .venv/bin/activate
pip install -r requirements.txt This took me two days as I tried the following things:
this resulted in this error:
I opened an issue about it.
I'm writing this as it might be of use to a future poor soul that wants to install this package. |
Motivation for this change
Python library was absent from nixpkgs
Things done
sandbox
innix.conf
on non-NixOS linux)./result/bin/
) <- no binariesnix path-info -S
before and after)I added myself as maintainer