depot/third_party/nixpkgs/pkgs/development/python-modules/dashing/default.nix
Default email d5f4a57cbf Project import generated by Copybara.
GitOrigin-RevId: ce5e4a6ef2e59d89a971bc434ca8ca222b9c7f5e
2023-08-10 09:59:29 +02:00

30 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 ];
};
}