mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
28 lines
591 B
Nix
28 lines
591 B
Nix
{ stdenv
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
, pytest
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "Send2Trash";
|
|
version = "1.5.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "hsoft";
|
|
repo = "send2trash";
|
|
rev = version;
|
|
sha256 = "1c76zldhw2ay7q7r00nnzcampjz9lkqfcbzqpm0iqp5i6bmmv30v";
|
|
};
|
|
|
|
doCheck = !stdenv.isDarwin;
|
|
checkPhase = "HOME=$TMPDIR pytest";
|
|
checkInputs = [ pytest ];
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Send file to trash natively under macOS, Windows and Linux";
|
|
homepage = https://github.com/hsoft/send2trash;
|
|
license = licenses.bsd3;
|
|
};
|
|
}
|