evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / development / python-modules / argh / default.nix
bloba4ab8087a61239adfb934cdbf6469c72aeecf9d6
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5   flit-core,
6   iocapture,
7   mock,
8   pytestCheckHook,
9 }:
11 buildPythonPackage rec {
12   pname = "argh";
13   version = "0.31.3";
14   format = "pyproject";
16   src = fetchPypi {
17     inherit pname version;
18     hash = "sha256-8wAj2L4Uyl7msbPuq4KRUde72kZK4H3E3VNHkZxYkvk=";
19   };
21   nativeBuildInputs = [ flit-core ];
23   nativeCheckInputs = [
24     iocapture
25     mock
26     pytestCheckHook
27   ];
29   pythonImportsCheck = [ "argh" ];
31   meta = with lib; {
32     changelog = "https://github.com/neithere/argh/blob/v${version}/CHANGES";
33     homepage = "https://github.com/neithere/argh";
34     description = "Unobtrusive argparse wrapper with natural syntax";
35     license = licenses.lgpl3Plus;
36     maintainers = with maintainers; [ domenkozar ];
37   };