Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / dashing / default.nix
blob9caa56a87649a01b530243c27aba2c058f1cda1d
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , pythonOlder
5 , blessed
6 }:
8 buildPythonPackage rec {
9   pname = "dashing";
10   version = "0.1.0";
11   format = "setuptools";
13   disabled = pythonOlder "3.7";
15   src = fetchPypi {
16     inherit pname version;
17     hash = "sha256-JRRgjg8pp3Xb0bERFWEhnOg9U8+kuqL+QQH6uE/Vbxs=";
18   };
20   propagatedBuildInputs = [
21     blessed
22   ];
24   meta = with lib; {
25     homepage = "https://github.com/FedericoCeratto/dashing";
26     description = "Terminal dashboards for Python";
27     license = licenses.gpl3;
28     maintainers = with maintainers; [ juliusrickert ];
29   };