Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / backports-shutil-which / default.nix
blob290e4e26978113c726f54207b29547bd677ce3f5
1 { lib, fetchPypi, buildPythonPackage, pytest }:
3 buildPythonPackage rec {
4   pname = "backports-shutil-which";
5   version = "3.5.2";
7   src = fetchPypi {
8     pname = "backports.shutil_which";
9     inherit version;
10     sha256 = "fe39f567cbe4fad89e8ac4dbeb23f87ef80f7fe8e829669d0221ecdb0437c133";
11   };
13   nativeCheckInputs = [ pytest ];
15   checkPhase = ''
16     py.test test
17   '';
19   meta = with lib; {
20     description = "Backport of shutil.which from Python 3.3";
21     homepage = "https://github.com/minrk/backports.shutil_which";
22     license = licenses.psfl;
23     maintainers = with maintainers; [ jluttine ];
24   };