mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 18:26:45 +01:00
31 lines
560 B
Nix
31 lines
560 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
, pytest
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "shutilwhich";
|
|
version = "1.1.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "mbr";
|
|
repo = pname;
|
|
rev = version;
|
|
sha256 = "05fwcjn86w8wprck04iv1zccfi39skdf0lhwpb4b9gpvklyc9mj0";
|
|
};
|
|
|
|
checkInputs = [ pytest ];
|
|
|
|
checkPhase = ''
|
|
pytest -rs
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Backport of shutil.which";
|
|
license = licenses.psfl;
|
|
homepage = "https://github.com/mbr/shutilwhich";
|
|
maintainers = with maintainers; [ multun ];
|
|
};
|
|
}
|