about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/argparse-dataclass/default.nix
blob: 9310c6f712154dead71186b6cf1e6238e8881dbd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{ lib, buildPythonPackage, fetchFromGitHub, pytestCheckHook }:

buildPythonPackage rec {
  pname = "argparse-dataclass";
  version = "1.0.0";
  format = "setuptools";

  src = fetchFromGitHub {
    owner = "mivade";
    repo = "argparse_dataclass";
    rev = version;
    sha256 = "6//XQKUnCH3ZtOL6M/EstMJ537nEmbuGQNqfelTluOs=";
  };

  checkInputs = [ pytestCheckHook ];

  pythonImportsCheck = [ "argparse_dataclass" ];

  meta = with lib; {
    description = "Declarative CLIs with argparse and dataclasses";
    homepage = "https://github.com/mivade/argparse_dataclass";
    license = licenses.mit;
    maintainers = with maintainers; [ tm-drtina ];
  };
}