blob: 97b26b9244c34721acd222accc89b87902ba92cc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
{
lib,
buildPythonPackage,
fetchPypi,
}:
buildPythonPackage rec {
pname = "fontawesomefree";
version = "6.6.0";
format = "wheel";
# they only provide a wheel
src = fetchPypi {
inherit pname version;
format = "wheel";
dist = "py3";
python = "py3";
hash = "sha256-WZtXRDHJvZLtX8BU0QRaB8QjNdo2wXiE8rk0dV7vkIk=";
};
pythonImportsCheck = [ "fontawesomefree" ];
meta = {
homepage = "https://github.com/FortAwesome/Font-Awesome";
description = "Icon library and toolkit";
license = with lib.licenses; [
ofl
cc-by-40
];
maintainers = with lib.maintainers; [ netali ];
};
}
|