1{
2 lib,
3 buildPythonPackage,
4 fetchFromGitHub,
5 setuptools,
6}:
7
8buildPythonPackage rec {
9 pname = "pbar";
10 version = "2.2.1";
11 pyproject = true;
12
13 src = fetchFromGitHub {
14 owner = "darvil82";
15 repo = "PBar";
16 tag = "v${version}";
17 hash = "sha256-FsEjfusk8isOD52xkjndGQdVC8Vc7N3spLLWQTi3Svc=";
18 };
19
20 build-system = [ setuptools ];
21 pythonImportsCheck = [ "pbar" ];
22
23 meta = with lib; {
24 description = "Display customizable progress bars on the terminal easily";
25 license = licenses.mit;
26 homepage = "https://darvil82.github.io/PBar";
27 maintainers = with maintainers; [ sigmanificient ];
28 };
29}