mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-29 00:53:57 +00:00
33afbf39f6
checkInputs used to be added to nativeBuildInputs. Now we have nativeCheckInputs to do that instead. Doing this treewide change allows to keep hashes identical to before the introduction of nativeCheckInputs.
25 lines
578 B
Nix
25 lines
578 B
Nix
{ 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 ];
|
|
};
|
|
}
|