nixpkgs/pkgs/development/python-modules/ush/default.nix
ckie a584cc2156
ush: init at 3.1.0
Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
2021-08-13 00:31:34 +03:00

28 lines
643 B
Nix

{ 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 ];
};
}