ush: init at 3.1.0

Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
This commit is contained in:
ckie 2021-07-26 01:38:02 +03:00
parent 392d679d66
commit a584cc2156
No known key found for this signature in database
GPG key ID: 13E79449C0525215
2 changed files with 29 additions and 0 deletions

View file

@ -0,0 +1,27 @@
{ 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 ];
};
}

View file

@ -8945,6 +8945,8 @@ in {
userpath = callPackage ../development/python-modules/userpath { }; userpath = callPackage ../development/python-modules/userpath { };
ush = callPackage ../development/python-modules/ush { };
utils = callPackage ../development/python-modules/utils { }; utils = callPackage ../development/python-modules/utils { };
uuid = callPackage ../development/python-modules/uuid { }; uuid = callPackage ../development/python-modules/uuid { };