Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / python-modules / xstatic-bootstrap / default.nix
blob0d9962e5faf5015c650e3d7156dcce6a425b4302
1 { buildPythonPackage
2 , lib
3 , fetchPypi
4 }:
6 buildPythonPackage rec {
7   pname = "XStatic-Bootstrap";
8   version = "4.5.3.1";
10   src = fetchPypi {
11     inherit version pname;
12     sha256 = "cf67d205437b32508a88b69a7e7c5bbe2ca5a8ae71097391a6a6f510ebfd2820";
13   };
15   # no tests implemented
16   doCheck = false;
18   meta = with lib;{
19     homepage = "https://getbootstrap.com";
20     description = "Bootstrap packaged static files for python";
21     license = licenses.mit;
22     maintainers = with maintainers; [ makefu ];
23   };