ff1a94e523
The nixpkgs-unstable channel's programs.sqlite was used to identify packages producing exactly one binary, and these automatically added to their package definitions wherever possible.
59 lines
1.3 KiB
Nix
59 lines
1.3 KiB
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
, cython
|
|
, oldest-supported-numpy
|
|
, setuptools
|
|
, wheel
|
|
, scipy
|
|
, numpy
|
|
, pytestCheckHook
|
|
, pythonOlder
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "dtw-python";
|
|
version = "1.3.1";
|
|
format = "pyproject";
|
|
|
|
disabled = pythonOlder "3.6";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "DynamicTimeWarping";
|
|
repo = "dtw-python";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-XO6uyQjWRPCZ7txsBJpFxr5fcNlwt+CBmV6AAWoxaHI=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
cython
|
|
oldest-supported-numpy
|
|
setuptools
|
|
wheel
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
scipy
|
|
numpy
|
|
];
|
|
|
|
# We need to run tests on real built package: https://github.com/NixOS/nixpkgs/issues/255262
|
|
preCheck = "cd $out";
|
|
nativeCheckInputs = [ pytestCheckHook ];
|
|
# tests/ are not included to output package, so we have to set path explicitly
|
|
pytestFlagsArray = [
|
|
"$src/tests"
|
|
];
|
|
|
|
pythonImportsCheck = [ "dtw" ];
|
|
|
|
meta = with lib; {
|
|
description = "Python port of R's Comprehensive Dynamic Time Warp algorithms package";
|
|
mainProgram = "dtw";
|
|
homepage = "https://github.com/DynamicTimeWarping/dtw-python";
|
|
changelog = "https://github.com/DynamicTimeWarping/dtw-python/blob/${src.rev}/CHANGELOG.md";
|
|
license = licenses.gpl3Only;
|
|
maintainers = with maintainers; [ mbalatsko ];
|
|
};
|
|
}
|