nixpkgs/pkgs/development/python-modules/send2trash/default.nix

28 lines
591 B
Nix
Raw Normal View History

2018-02-23 15:50:35 +00:00
{ stdenv
2018-01-16 21:27:59 +00:00
, buildPythonPackage
, fetchFromGitHub
, pytest
}:
buildPythonPackage rec {
pname = "Send2Trash";
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;
checkPhase = "HOME=$TMPDIR pytest";
checkInputs = [ pytest ];
2018-01-16 21:27:59 +00: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;
};
}