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