depot/third_party/nixpkgs/pkgs/development/python-modules/findpython/default.nix
Default email bb584b27e9 Project import generated by Copybara.
GitOrigin-RevId: 5181d5945eda382ff6a9ca3e072ed6ea9b547fee
2022-04-15 03:41:22 +02:00

53 lines
824 B
Nix

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