blob: e95c6f26c39770b1f7ce42ac50ab5aca5549f766 (
plain)
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
26
27
28
29
30
31
32
33
34
|
{
lib,
buildPythonPackage,
fetchPypi,
setuptools,
pytestCheckHook,
args,
}:
buildPythonPackage rec {
pname = "clint";
version = "0.5.1";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-BSJMMrEHVWPQsW0AFfqvnaQ6ohTkohQOUfCHieekxao=";
};
build-system = [ setuptools ];
dependencies = [ args ];
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "clint" ];
meta = {
homepage = "https://github.com/kennethreitz/clint";
description = "Python Command Line Interface Tools";
license = lib.licenses.isc;
maintainers = [ ];
};
}
|