2022-01-19 23:45:15 +00:00
|
|
|
{ lib
|
|
|
|
, buildPythonPackage
|
|
|
|
, pythonOlder
|
|
|
|
, fetchFromGitHub
|
|
|
|
, pytestCheckHook
|
|
|
|
, attrs
|
|
|
|
, cached-property
|
|
|
|
, click
|
|
|
|
, packaging
|
|
|
|
, pytest-cov
|
|
|
|
, pytest-timeout
|
2022-09-30 11:47:45 +00:00
|
|
|
, setuptools
|
2022-01-19 23:45:15 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "pythonfinder";
|
2023-03-15 16:39:30 +00:00
|
|
|
version = "1.3.2";
|
2022-01-19 23:45:15 +00:00
|
|
|
format = "pyproject";
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "sarugaku";
|
|
|
|
repo = pname;
|
2023-03-15 16:39:30 +00:00
|
|
|
rev = "refs/tags/${version}";
|
|
|
|
hash = "sha256-sfoAS3QpD78we8HcXpxjSyEIN1xLRVLExaM3oXe6tLU=";
|
2022-01-19 23:45:15 +00:00
|
|
|
};
|
|
|
|
|
2022-09-30 11:47:45 +00:00
|
|
|
nativeBuildInputs = [
|
|
|
|
setuptools
|
|
|
|
];
|
|
|
|
|
2022-01-19 23:45:15 +00:00
|
|
|
propagatedBuildInputs = [
|
|
|
|
attrs
|
|
|
|
cached-property
|
|
|
|
click
|
|
|
|
packaging
|
|
|
|
];
|
|
|
|
|
2023-02-02 18:25:31 +00:00
|
|
|
nativeCheckInputs = [
|
2022-01-19 23:45:15 +00:00
|
|
|
pytestCheckHook
|
|
|
|
pytest-cov
|
|
|
|
pytest-timeout
|
|
|
|
];
|
|
|
|
|
2023-03-15 16:39:30 +00:00
|
|
|
pythonImportsCheck = [
|
|
|
|
"pythonfinder"
|
|
|
|
];
|
|
|
|
|
|
|
|
pytestFlagsArray = [
|
|
|
|
"--no-cov"
|
|
|
|
];
|
2022-01-19 23:45:15 +00:00
|
|
|
|
|
|
|
# these tests invoke git in a subprocess and
|
2023-02-02 18:25:31 +00:00
|
|
|
# for some reason git can't be found even if included in nativeCheckInputs
|
2022-01-19 23:45:15 +00:00
|
|
|
disabledTests = [
|
|
|
|
"test_shims_are_kept"
|
|
|
|
"test_shims_are_removed"
|
|
|
|
];
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
homepage = "https://github.com/sarugaku/pythonfinder";
|
2023-03-15 16:39:30 +00:00
|
|
|
changelog = "https://github.com/sarugaku/pythonfinder/blob/v${version}/CHANGELOG.rst";
|
2022-01-19 23:45:15 +00:00
|
|
|
description = "Cross Platform Search Tool for Finding Pythons";
|
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [ cpcloud ];
|
|
|
|
};
|
|
|
|
}
|