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