-
-
Notifications
You must be signed in to change notification settings - Fork 15k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
python312Packages.reprint: init at 0.6.0
- Loading branch information
1 parent
08fb50b
commit ab9f714
Showing
2 changed files
with
48 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
{ | ||
backports-shutil-get-terminal-size, | ||
buildPythonPackage, | ||
colorama, | ||
fetchFromGitHub, | ||
lib, | ||
setuptools, | ||
six, | ||
stdenv, | ||
}: | ||
|
||
buildPythonPackage rec { | ||
pname = "reprint"; | ||
version = "0.6.0"; | ||
|
||
src = fetchFromGitHub { | ||
owner = "Yinzo"; | ||
repo = "reprint"; | ||
rev = "${version}"; | ||
hash = "sha256-99FC12LcvvRRwNAxDSvWo9vRYmieL0JHSaCJqO/UGEs="; | ||
}; | ||
|
||
buildInputs = [ | ||
backports-shutil-get-terminal-size | ||
setuptools | ||
]; | ||
|
||
dependencies = [ | ||
colorama | ||
six | ||
]; | ||
|
||
doCheck = false; # Skipping test phase as there are no tests | ||
|
||
pythonImportsCheck = [ "reprint" ]; | ||
|
||
meta = { | ||
description = "Module for binding variables and refreshing multi-line output in terminal"; | ||
homepage = "https://github.com/Yinzo/reprint"; | ||
license = lib.licenses.asl20; | ||
maintainers = with lib.maintainers; [ | ||
jasonodoom | ||
jleightcap | ||
]; | ||
}; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters