2018-02-23 15:50:35 +00:00
|
|
|
{ stdenv
|
2018-01-16 21:27:59 +00:00
|
|
|
, buildPythonPackage
|
|
|
|
, fetchFromGitHub
|
|
|
|
, pytest
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "Send2Trash";
|
2019-08-01 20:28:13 +01:00
|
|
|
version = "1.5.0";
|
2018-01-16 21:27:59 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "hsoft";
|
|
|
|
repo = "send2trash";
|
|
|
|
rev = version;
|
|
|
|
sha256 = "1w502i5h8xaqf03g6h95h4vs1wqfv6kg925dn63phrwmg1hfz2xx";
|
|
|
|
};
|
|
|
|
|
2018-02-23 15:50:35 +00:00
|
|
|
doCheck = !stdenv.isDarwin;
|
2019-08-01 20:28:13 +01:00
|
|
|
checkPhase = "HOME=$TMPDIR pytest";
|
|
|
|
checkInputs = [ pytest ];
|
2018-01-16 21:27:59 +00:00
|
|
|
|
2019-08-01 20:28:13 +01:00
|
|
|
meta = with stdenv.lib; {
|
2018-01-16 21:27:59 +00:00
|
|
|
description = "Send file to trash natively under macOS, Windows and Linux";
|
|
|
|
homepage = https://github.com/hsoft/send2trash;
|
|
|
|
license = licenses.bsd3;
|
|
|
|
};
|
|
|
|
}
|