depot/third_party/nixpkgs/pkgs/development/python-modules/ush/default.nix
Default email 5ca88bfbb9 Project import generated by Copybara.
GitOrigin-RevId: 9f918d616c5321ad374ae6cb5ea89c9e04bf3e58
2024-07-31 10:19:44 +00:00

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 = [ ];
};
}