depot/pkgs/by-name/ng/ngrid/package.nix
Luke Granger-Brown 57725ef3ec Squashed 'third_party/nixpkgs/' content from commit 76612b17c0ce
git-subtree-dir: third_party/nixpkgs
git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
2024-11-10 23:59:47 +00:00

69 lines
1.2 KiB
Nix

{ lib
, fetchFromGitHub
, python3
, expect
}:
python3.pkgs.buildPythonApplication rec {
pname = "ngrid";
version = "0.1.0";
pyproject = true;
src = fetchFromGitHub {
owner = "twosigma";
repo = "ngrid";
rev = version;
hash = "sha256-69icp0m+bAHBsQFIDGd8NjfMsMYsB1sUfzuP/OBl5jc=";
};
nativeBuildInputs = [
python3.pkgs.setuptools
python3.pkgs.wheel
];
propagatedBuildInputs = [
python3.pkgs.six
python3.pkgs.numpy
python3.pkgs.pytz
python3.pkgs.pandas
];
pythonImportsCheck = [ "ngrid.main" ];
nativeCheckInputs = [ python3.pkgs.pytest expect ];
checkPhase = ''
runHook preCheck
pytest test/formatters.py
echo -e "a,b,c\n1.98423,some string,5824.2" > test.csv
expect <<EOD
exp_internal 1
set timeout 3
spawn $out/bin/ngrid test.csv
expect {
"Traceback" { exit 1 }
timeout { }
}
send "q"
expect {
"Traceback" { exit 1 }
eof { exit 0 }
}
EOD
runHook postCheck
'';
meta = with lib; {
description = "It's \"less\" for data";
homepage = "https://github.com/twosigma/ngrid";
license = licenses.bsd3;
maintainers = with maintainers; [ twitchy0 ];
mainProgram = "ngrid";
};
}