Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / fastdtw / default.nix
blobce973d218417ad0765a8eebd367d449603b6af2f
1 { lib
2 , buildPythonPackage
3 , fetchFromGitHub
4 , fetchpatch
5 , cython
6 , numpy
7   # Check Inputs
8 , pytestCheckHook
9 , python
12 buildPythonPackage rec {
13   pname = "fastdtw";
14   version = "0.3.4";
15   format = "setuptools";
17   src = fetchFromGitHub {
18     owner = "slaypni";
19     repo = pname;
20     rev = "v${version}";
21     sha256 = "0irc5x4ahfp7f7q4ic97qa898s2awi0vdjznahxrfjirn8b157dw";
22   };
24   patches = [
25     # Removes outdated cythonized C++ file, which doesn't match CPython. Will be auto-used if left.
26     # Remove when PR 40 merged
27     (fetchpatch {
28       url = "https://patch-diff.githubusercontent.com/raw/slaypni/fastdtw/pull/40.patch";
29       sha256 = "0xjma0h84bk1n32wgk99rwfc85scp187a7fykhnylmcc73ppal9q";
30     })
31   ];
33   nativeBuildInputs = [
34     cython
35   ];
37   propagatedBuildInputs = [
38     numpy
39   ];
41   pythonImportsCheck = [ "fastdtw.fastdtw" ];
42   nativeCheckInputs = [ pytestCheckHook ];
43   dontUseSetuptoolsCheck = true;  # looks for pytest-runner
44   preCheck = ''
45     echo "Temporarily moving tests to $OUT to find cython modules"
46     export PACKAGEDIR=$out/${python.sitePackages}
47     cp -r $TMP/source/tests $PACKAGEDIR
48     pushd $PACKAGEDIR
49   '';
50   postCheck = ''
51     rm -rf tests
52     popd
53   '';
56   meta = with lib; {
57     description = "Python implementation of FastDTW (Dynamic Time Warping)";
58     longDescription = ''
59       FastDTW is an approximate Dynamic Time Warping (DTW) algorithm that provides
60       optimal or near-optimal alignments with an O(N) time and memory complexity.
61     '';
62     homepage = "https://github.com/slaypni/fastdtw";
63     license = licenses.mit;
64     maintainers = with maintainers; [ drewrisinger ];
65   };