bcb2f287e1
GitOrigin-RevId: d603719ec6e294f034936c0d0dc06f689d91b6c3
48 lines
936 B
Nix
48 lines
936 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchPypi,
|
|
pythonOlder,
|
|
|
|
# build time
|
|
pdm-backend,
|
|
|
|
# runtime
|
|
packaging,
|
|
|
|
# tests
|
|
pytestCheckHook,
|
|
}:
|
|
|
|
let
|
|
pname = "findpython";
|
|
version = "0.6.1";
|
|
in
|
|
buildPythonPackage {
|
|
inherit pname version;
|
|
format = "pyproject";
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-VuUrQJqSvL1JXPmByFrPE387PlHMdptG66IZuxq3Uzw=";
|
|
};
|
|
|
|
nativeBuildInputs = [ pdm-backend ];
|
|
|
|
propagatedBuildInputs = [ packaging ];
|
|
|
|
nativeCheckInputs = [ pytestCheckHook ];
|
|
|
|
pythonImportsCheck = [ "findpython" ];
|
|
|
|
meta = with lib; {
|
|
description = "Utility to find python versions on your system";
|
|
mainProgram = "findpython";
|
|
homepage = "https://github.com/frostming/findpython";
|
|
changelog = "https://github.com/frostming/findpython/releases/tag/${version}";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ hexa ];
|
|
};
|
|
}
|