mirror of
https://github.com/denismhz/flake.git
synced 2025-11-09 08:06:23 +01:00
20 lines
472 B
Nix
20 lines
472 B
Nix
{ buildPythonPackage, fetchPypi, lib }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "font-roboto";
|
|
version = "0.0.1";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "sha256-i8kTa/RmCfuxOvR4MBZ5mxTiPdopSmF5EXHefqLsRX8=";
|
|
};
|
|
|
|
# TODO FIXME
|
|
doCheck = false;
|
|
|
|
meta = with lib; {
|
|
description = "Roboto is a neo-grotesque sans-serif font family designed by Google for the Android mobile OS.";
|
|
homepage = "https://github.com/pimoroni/fonts-python";
|
|
};
|
|
}
|