nixpkgs/pkgs/development/python-modules/resize-right/default.nix
Alexis Hildebrandt f8c4a98e8e treewide: Remove the definite article from meta.description
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"([Tt]he)? ' pkgs \
  | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Tt]he (.)/\1\U\2/'
2024-06-09 23:08:46 +02:00

38 lines
686 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;
maintainers = teams.tts.members;
};
}