Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / userpath / default.nix
blob17783bef05c00f169dc9aae61d14374ac046d83c
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , hatchling
5 , click
6 , pythonOlder
7 }:
9 buildPythonPackage rec {
10   pname = "userpath";
11   version = "1.9.2";
12   pyproject = true;
14   disabled = pythonOlder "3.7";
16   src = fetchPypi {
17     inherit pname version;
18     hash = "sha256-bFIojasGklfMgxhG0V1IEzUiRV1Gd+5pqXgfEdvv2BU=";
19   };
21   nativeBuildInputs = [
22     hatchling
23   ];
25   propagatedBuildInputs = [
26     click
27   ];
29   # Test suite is difficult to emulate in sandbox due to shell manipulation
30   doCheck = false;
32   pythonImportsCheck = [
33     "userpath"
34   ];
36   meta = with lib; {
37     description = "Cross-platform tool for adding locations to the user PATH";
38     mainProgram = "userpath";
39     homepage = "https://github.com/ofek/userpath";
40     changelog = "https://github.com/ofek/userpath/releases/tag/v${version}";
41     license = with licenses; [ asl20 mit ];
42     maintainers = with maintainers; [ yshym ];
43   };