mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-21 05:04:00 +00:00
python3Packages.dtw-python: init at 1.3.0
This commit is contained in:
parent
74b1db5164
commit
163ae47dcc
57
pkgs/development/python-modules/dtw-python/default.nix
Normal file
57
pkgs/development/python-modules/dtw-python/default.nix
Normal file
@ -0,0 +1,57 @@
|
||||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchFromGitHub
|
||||
, cython
|
||||
, oldest-supported-numpy
|
||||
, setuptools
|
||||
, wheel
|
||||
, scipy
|
||||
, numpy
|
||||
, pytestCheckHook
|
||||
, pythonOlder
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "dtw-python";
|
||||
version = "1.3.0";
|
||||
format = "pyproject";
|
||||
|
||||
disable = pythonOlder "3.6";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "DynamicTimeWarping";
|
||||
repo = "dtw-python";
|
||||
rev = "v${version}";
|
||||
hash = "sha256-7hQuo7dES9f08YZhCf+kxUkMlrr+bg1P7HHRCMv3bLk=";
|
||||
};
|
||||
|
||||
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";
|
||||
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 ];
|
||||
};
|
||||
}
|
@ -3254,6 +3254,8 @@ self: super: with self; {
|
||||
|
||||
dtschema = callPackage ../development/python-modules/dtschema { };
|
||||
|
||||
dtw-python = callPackage ../development/python-modules/dtw-python { };
|
||||
|
||||
ducc0 = callPackage ../development/python-modules/ducc0 { };
|
||||
|
||||
duckdb = callPackage ../development/python-modules/duckdb {
|
||||
|
Loading…
Reference in New Issue
Block a user