blob: 1e7a13cdaefd7da89fcbf41cabd646d0558a6740 (
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
flit-core,
pathspec,
pythonOlder,
unittestCheckHook,
}:
buildPythonPackage rec {
pname = "trailrunner";
version = "1.4.0";
format = "pyproject";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "omnilib";
repo = "trailrunner";
rev = "refs/tags/v${version}";
hash = "sha256-qtEBr22yyj6WcSfyYr/4r0IuuMJ6chFFqnmb+uMfQPA=";
};
nativeBuildInputs = [ flit-core ];
propagatedBuildInputs = [ pathspec ];
nativeCheckInputs = [ unittestCheckHook ];
pythonImportsCheck = [ "trailrunner" ];
meta = with lib; {
description = "Module to walk paths and run things";
homepage = "https://github.com/omnilib/trailrunner";
changelog = "https://github.com/omnilib/trailrunner/blob/${version}/CHANGELOG.md";
license = licenses.mit;
maintainers = with maintainers; [ fab ];
};
}
|