mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-26 07:34:11 +00:00
33afbf39f6
checkInputs used to be added to nativeBuildInputs. Now we have nativeCheckInputs to do that instead. Doing this treewide change allows to keep hashes identical to before the introduction of nativeCheckInputs.
57 lines
1.0 KiB
Nix
57 lines
1.0 KiB
Nix
{ buildPythonPackage
|
|
, fetchFromGitHub
|
|
, lib
|
|
, isPy3k
|
|
, cython
|
|
, numpy
|
|
, toml
|
|
, pytest
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "finalfusion";
|
|
version = "0.7.1";
|
|
|
|
disabled = !isPy3k;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "finalfusion";
|
|
repo = "finalfusion-python";
|
|
rev = version;
|
|
sha256 = "0pwzflamxqvpl1wcz0zbhhd6aa4xn18rmza6rggaic3ckidhyrh4";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
cython
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
numpy
|
|
toml
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
pytest
|
|
];
|
|
|
|
postPatch = ''
|
|
patchShebangs tests/integration
|
|
'';
|
|
|
|
checkPhase = ''
|
|
# Regular unit tests.
|
|
pytest
|
|
|
|
# Integration tests for command-line utilities.
|
|
PATH=$PATH:$out/bin tests/integration/all.sh
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Python module for using finalfusion, word2vec, and fastText word embeddings";
|
|
homepage = "https://github.com/finalfusion/finalfusion-python/";
|
|
maintainers = with maintainers; [ ];
|
|
platforms = platforms.all;
|
|
license = licenses.blueOak100;
|
|
};
|
|
}
|