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