1{
2 lib,
3 buildPythonPackage,
4 fetchPypi,
5 setuptools,
6 pytestCheckHook,
7 args,
8}:
9
10buildPythonPackage rec {
11 pname = "clint";
12 version = "0.5.1";
13 pyproject = true;
14
15 src = fetchPypi {
16 inherit pname version;
17 hash = "sha256-BSJMMrEHVWPQsW0AFfqvnaQ6ohTkohQOUfCHieekxao=";
18 };
19
20 build-system = [ setuptools ];
21
22 dependencies = [ args ];
23
24 nativeCheckInputs = [ pytestCheckHook ];
25
26 pythonImportsCheck = [ "clint" ];
27
28 meta = with lib; {
29 homepage = "https://github.com/kennethreitz/clint";
30 description = "Python Command Line Interface Tools";
31 license = licenses.isc;
32 maintainers = with maintainers; [ ];
33 };
34}