pythonPackages.shutilwhich: init at 1.1.0

This commit is contained in:
Victor multun Collod 2019-12-29 19:35:41 +01:00 committed by Jon
parent 0c76aa6414
commit 7cce13c5aa
2 changed files with 32 additions and 0 deletions

View file

@ -0,0 +1,30 @@
{ 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 ];
};
}

View file

@ -5225,6 +5225,8 @@ in {
shippai = callPackage ../development/python-modules/shippai {};
shutilwhich = callPackage ../development/python-modules/shutilwhich { };
simanneal = callPackage ../development/python-modules/simanneal { };
simplegeneric = callPackage ../development/python-modules/simplegeneric { };