depot/third_party/nixpkgs/pkgs/development/python-modules/dashing/default.nix
Default email fa5436e0a7 Project import generated by Copybara.
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
2024-06-05 17:53:02 +02:00

29 lines
584 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 ];
};
}