Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 23.05 27 lines 589 B view raw
1{ lib 2, python3 3}: 4 5python3.pkgs.buildPythonPackage rec { 6 pname = "dashing"; 7 version = "0.1.0"; 8 format = "setuptools"; 9 10 disabled = python3.pythonOlder "3.7"; 11 12 src = python3.pkgs.fetchPypi { 13 inherit pname version; 14 hash = "sha256-JRRgjg8pp3Xb0bERFWEhnOg9U8+kuqL+QQH6uE/Vbxs="; 15 }; 16 17 propagatedBuildInputs = with python3.pkgs; [ 18 blessed 19 ]; 20 21 meta = with lib; { 22 homepage = "https://github.com/FedericoCeratto/dashing"; 23 description = "Terminal dashboards for Python"; 24 license = licenses.gpl3; 25 maintainers = with maintainers; [ juliusrickert ]; 26 }; 27}