about summary refs log tree commit diff
path: root/pkgs/development/python-modules/xstatic-font-awesome/default.nix
blob: 71028393dc8c2765f894c3d26bd7e1b7676a8cc4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{ buildPythonPackage
, lib
, fetchPypi
}:

buildPythonPackage rec {
  pname = "XStatic-Font-Awesome";
  version = "6.2.1.1";

  src = fetchPypi {
    inherit version pname;
    sha256 = "sha256-8HWHEJYShjjy4VOQINgid1TD2IXdaOfubemgEjUHaCg=";
  };

  # no tests implemented
  doCheck = false;

  meta = with lib; {
    homepage = "https://github.com/python-xstatic/font-awesome";
    description = "Font Awesome packaged for python";
    license = licenses.ofl;
    maintainers = with maintainers; [ aither64 ];
  };
}