depot/third_party/nixpkgs/pkgs/development/python-modules/findpython/default.nix
Default email 5e7c2d6cef Project import generated by Copybara.
GitOrigin-RevId: f99e5f03cc0aa231ab5950a15ed02afec45ed51a
2023-10-09 21:29:22 +02:00

54 lines
915 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, pythonOlder
# build time
, pdm-backend
# runtime
, packaging
# tests
, pytestCheckHook
}:
let
pname = "findpython";
version = "0.4.0";
in
buildPythonPackage {
inherit pname version;
format = "pyproject";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-GLFNEVZ42hiuku4i1wAcwwkV6lMQU/dwEO4Fo5aA9Dg=";
};
nativeBuildInputs = [
pdm-backend
];
propagatedBuildInputs = [
packaging
];
nativeCheckInputs = [
pytestCheckHook
];
pythonImportsCheck = [
"findpython"
];
meta = with lib; {
description = "A utility to find python versions on your system";
homepage = "https://github.com/frostming/findpython";
changelog = "https://github.com/frostming/findpython/releases/tag/${version}";
license = licenses.mit;
maintainers = with maintainers; [ hexa ];
};
}