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

28 lines
591 B
Nix
Raw Normal View History

{ lib, 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;
2019-12-11 23:18:18 +00:00
sha256 = "1c76zldhw2ay7q7r00nnzcampjz9lkqfcbzqpm0iqp5i6bmmv30v";
2018-01-16 21:27:59 +00:00
};
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 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";
2018-01-16 21:27:59 +00:00
license = licenses.bsd3;
};
}