python312Packages.fnllm: 0.0.11 -> 0.0.12 (#364582)
[NixPkgs.git] / pkgs / development / python-modules / dashing / default.nix
blob7382adf521b5971b034175a157ee2e7aa9e1e9f8
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5   pythonOlder,
6   blessed,
7 }:
9 buildPythonPackage rec {
10   pname = "dashing";
11   version = "0.1.0";
12   format = "setuptools";
14   disabled = pythonOlder "3.7";
16   src = fetchPypi {
17     inherit pname version;
18     hash = "sha256-JRRgjg8pp3Xb0bERFWEhnOg9U8+kuqL+QQH6uE/Vbxs=";
19   };
21   propagatedBuildInputs = [ blessed ];
23   meta = with lib; {
24     homepage = "https://github.com/FedericoCeratto/dashing";
25     description = "Terminal dashboards for Python";
26     license = licenses.gpl3;
27     maintainers = with maintainers; [ juliusrickert ];
28   };