about summary refs log tree commit diff
path: root/pkgs/development/python-modules/backports-shutil-which/default.nix
blob: 95b47bb6028edadf25dc3aa7165b028e760b7e0c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{ lib, fetchPypi, buildPythonPackage, pytest }:

buildPythonPackage rec {
  pname = "backports.shutil_which";
  version = "3.5.2";

  src = fetchPypi {
    inherit pname 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 ];
  };
}