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