mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 07:13:23 +01:00
pythonPackages.shutilwhich: init at 1.1.0
This commit is contained in:
parent
0c76aa6414
commit
7cce13c5aa
2 changed files with 32 additions and 0 deletions
30
pkgs/development/python-modules/shutilwhich/default.nix
Normal file
30
pkgs/development/python-modules/shutilwhich/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
|
@ -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 { };
|
||||
|
|
Loading…
Reference in a new issue