1{ lib
2, python3
3, fetchPypi
4}:
5
6python3.pkgs.buildPythonPackage rec {
7 pname = "dashing";
8 version = "0.1.0";
9 format = "setuptools";
10
11 disabled = python3.pythonOlder "3.7";
12
13 src = fetchPypi {
14 inherit pname version;
15 hash = "sha256-JRRgjg8pp3Xb0bERFWEhnOg9U8+kuqL+QQH6uE/Vbxs=";
16 };
17
18 propagatedBuildInputs = with python3.pkgs; [
19 blessed
20 ];
21
22 meta = with lib; {
23 homepage = "https://github.com/FedericoCeratto/dashing";
24 description = "Terminal dashboards for Python";
25 license = licenses.gpl3;
26 maintainers = with maintainers; [ juliusrickert ];
27 };
28}