1{
2 lib,
3 buildPythonPackage,
4 fetchFromGitHub,
5 pytestCheckHook,
6 six,
7 setuptools,
8}:
9
10buildPythonPackage rec {
11 pname = "ush";
12 version = "4.1.0";
13 pyproject = true;
14
15 src = fetchFromGitHub {
16 owner = "tarruda";
17 repo = "python-ush";
18 rev = version;
19 hash = "sha256-a6ICbd8647DRtuHl2vs64bsChUjlpuWHV1ipBdFA600=";
20 };
21
22 build-system = [ setuptools ];
23
24 pythonImportsCheck = [ "ush" ];
25
26 nativeCheckInputs = [
27 pytestCheckHook
28 six
29 ];
30
31 disabledTestPaths = [
32 # seems to be outdated?
33 "tests/test_glob.py"
34 ];
35
36 meta = with lib; {
37 description = "Powerful API for invoking with external commands";
38 homepage = "https://github.com/tarruda/python-ush";
39 license = licenses.mit;
40 maintainers = [ ];
41 };
42}