2023-05-24 13:37:59 +00:00
|
|
|
{ lib
|
2023-08-10 07:59:29 +00:00
|
|
|
, buildPythonPackage
|
2023-07-15 17:15:38 +00:00
|
|
|
, fetchPypi
|
2023-08-10 07:59:29 +00:00
|
|
|
, pythonOlder
|
|
|
|
, blessed
|
2023-05-24 13:37:59 +00:00
|
|
|
}:
|
|
|
|
|
2023-08-10 07:59:29 +00:00
|
|
|
buildPythonPackage rec {
|
2023-05-24 13:37:59 +00:00
|
|
|
pname = "dashing";
|
|
|
|
version = "0.1.0";
|
|
|
|
format = "setuptools";
|
|
|
|
|
2023-08-10 07:59:29 +00:00
|
|
|
disabled = pythonOlder "3.7";
|
2023-05-24 13:37:59 +00:00
|
|
|
|
2023-07-15 17:15:38 +00:00
|
|
|
src = fetchPypi {
|
2023-05-24 13:37:59 +00:00
|
|
|
inherit pname version;
|
|
|
|
hash = "sha256-JRRgjg8pp3Xb0bERFWEhnOg9U8+kuqL+QQH6uE/Vbxs=";
|
|
|
|
};
|
|
|
|
|
2023-08-10 07:59:29 +00:00
|
|
|
propagatedBuildInputs = [
|
2023-05-24 13:37:59 +00:00
|
|
|
blessed
|
|
|
|
];
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
homepage = "https://github.com/FedericoCeratto/dashing";
|
|
|
|
description = "Terminal dashboards for Python";
|
|
|
|
license = licenses.gpl3;
|
|
|
|
maintainers = with maintainers; [ juliusrickert ];
|
|
|
|
};
|
|
|
|
}
|