ush: init at 3.1.0
Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
This commit is contained in:
parent
392d679d66
commit
a584cc2156
2 changed files with 29 additions and 0 deletions
27
pkgs/development/python-modules/ush/default.nix
Normal file
27
pkgs/development/python-modules/ush/default.nix
Normal 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 ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -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 { };
|
||||||
|
|
Loading…
Reference in a new issue