about summary refs log tree commit diff
path: root/pkgs/development/python-modules/flask-bootstrap/default.nix
blob: a34a1c2673b36f4658960d4deea671747072db9c (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
25
26
27
28
29
30
31
32
{
  lib,
  buildPythonPackage,
  fetchPypi,
  flask,
  visitor,
  dominate,
}:

buildPythonPackage rec {
  pname = "flask-bootstrap";
  version = "3.3.7.1";

  src = fetchPypi {
    pname = "Flask-Bootstrap";
    inherit version;
    sha256 = "1j1s2bplaifsnmr8vfxa3czca4rz78xyhrg4chx39xl306afs26b";
  };

  propagatedBuildInputs = [
    flask
    visitor
    dominate
  ];

  meta = with lib; {
    homepage = "https://github.com/mbr/flask-bootstrap";
    description = "Ready-to-use Twitter-bootstrap for use in Flask";
    license = licenses.asl20;
    maintainers = with maintainers; [ ];
  };
}