38 lines
676 B
Nix
38 lines
676 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchPypi,
|
|
|
|
# dependencies
|
|
numpy,
|
|
torch,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "resize-right";
|
|
version = "0.0.2";
|
|
format = "setuptools";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-fcNbcs5AErd/fMkEmDUWN5OrmKWKuIk2EPsRn+Wa9SA=";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
numpy
|
|
torch
|
|
];
|
|
|
|
pythonImportsCheck = [ "resize_right" ];
|
|
|
|
# no tests
|
|
doCheck = false;
|
|
|
|
meta = with lib; {
|
|
description = "Correct way to resize images or tensors. For Numpy or Pytorch (differentiable";
|
|
homepage = "https://github.com/assafshocher/ResizeRight";
|
|
license = licenses.mit;
|
|
teams = [ teams.tts ];
|
|
};
|
|
}
|