10 buildPythonPackage rec {
15 disabled = pythonOlder "3.7";
18 inherit pname version;
19 hash = "sha256-bFIojasGklfMgxhG0V1IEzUiRV1Gd+5pqXgfEdvv2BU=";
22 nativeBuildInputs = [ hatchling ];
24 propagatedBuildInputs = [ click ];
26 # Test suite is difficult to emulate in sandbox due to shell manipulation
29 pythonImportsCheck = [ "userpath" ];
32 description = "Cross-platform tool for adding locations to the user PATH";
33 mainProgram = "userpath";
34 homepage = "https://github.com/ofek/userpath";
35 changelog = "https://github.com/ofek/userpath/releases/tag/v${version}";
36 license = with licenses; [
40 maintainers = with maintainers; [ yshym ];