mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-02 19:14:14 +00:00
31 lines
583 B
Nix
31 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 ];
|
|
};
|
|
}
|