summary refs log blame commit diff
path: root/pkgs/development/python-modules/ush/default.nix
blob: d7a90bcb9e8d5157ce211883f6ae372b276e049d (plain) (tree)


























                                                                     
{ lib, buildPythonPackage, fetchFromGitHub, pytestCheckHook}:

buildPythonPackage rec {
  pname = "ush";
  version = "3.1.0";

  src = fetchFromGitHub {
    owner = "tarruda";
    repo = "python-ush";
    rev = version;
    sha256 = "sha256-eL3vG3yS02enbLYorKvvYKbju9HInffUhrZgkodwhvo=";
  };

  checkInputs = [ pytestCheckHook ];

  disabledTestPaths = [
    # seems to be outdated?
    "tests/test_glob.py"
  ];

  meta = with lib; {
    description = "Powerful API for invoking with external commands";
    homepage = "https://github.com/tarruda/python-ush";
    license = licenses.mit;
    maintainers = with maintainers; [ ckie ];
  };
}