depot/third_party/nixpkgs/pkgs/development/python-modules/backports-shutil-which/default.nix
Default email 5c370c0b2a Project import generated by Copybara.
GitOrigin-RevId: 33d1e753c82ffc557b4a585c77de43d4c922ebb5
2024-05-15 17:35:15 +02:00

25 lines
610 B
Nix

{ lib, fetchPypi, buildPythonPackage, pytest }:
buildPythonPackage rec {
pname = "backports-shutil-which";
version = "3.5.2";
src = fetchPypi {
pname = "backports.shutil_which";
inherit version;
sha256 = "fe39f567cbe4fad89e8ac4dbeb23f87ef80f7fe8e829669d0221ecdb0437c133";
};
nativeCheckInputs = [ pytest ];
checkPhase = ''
py.test test
'';
meta = with lib; {
description = "Backport of shutil.which from Python 3.3";
homepage = "https://github.com/minrk/backports.shutil_which";
license = licenses.psfl;
maintainers = with maintainers; [ jluttine ];
};
}