Skip to content

Commit

Permalink
python312Packages.reprint: init at 0.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jasonodoom authored and wegank committed Oct 21, 2024
1 parent 08fb50b commit ab9f714
Show file tree
Hide file tree
Showing 2 changed files with 48 additions and 0 deletions.
46 changes: 46 additions & 0 deletions pkgs/development/python-modules/reprint/default.nix
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
];
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/python-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -13576,6 +13576,8 @@ self: super: with self; {

reproject = callPackage ../development/python-modules/reproject { };

reprint = callPackage ../development/python-modules/reprint { };

reprshed = callPackage ../development/python-modules/reprshed { };

reptor = callPackage ../development/python-modules/reptor { };
Expand Down

0 comments on commit ab9f714

Please sign in to comment.