d5f4a57cbf
GitOrigin-RevId: ce5e4a6ef2e59d89a971bc434ca8ca222b9c7f5e
30 lines
583 B
Nix
30 lines
583 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, pythonOlder
|
|
, blessed
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "dashing";
|
|
version = "0.1.0";
|
|
format = "setuptools";
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-JRRgjg8pp3Xb0bERFWEhnOg9U8+kuqL+QQH6uE/Vbxs=";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
blessed
|
|
];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/FedericoCeratto/dashing";
|
|
description = "Terminal dashboards for Python";
|
|
license = licenses.gpl3;
|
|
maintainers = with maintainers; [ juliusrickert ];
|
|
};
|
|
}
|