5ca88bfbb9
GitOrigin-RevId: 9f918d616c5321ad374ae6cb5ea89c9e04bf3e58
37 lines
680 B
Nix
37 lines
680 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
pytestCheckHook,
|
|
six,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "ush";
|
|
version = "3.1.0";
|
|
format = "setuptools";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "tarruda";
|
|
repo = "python-ush";
|
|
rev = version;
|
|
hash = "sha256-eL3vG3yS02enbLYorKvvYKbju9HInffUhrZgkodwhvo=";
|
|
};
|
|
|
|
nativeCheckInputs = [
|
|
pytestCheckHook
|
|
six
|
|
];
|
|
|
|
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 = [ ];
|
|
};
|
|
}
|