depot/third_party/nixpkgs/pkgs/development/python-modules/xstatic-bootstrap/default.nix
Default email 8ac5e011d6 Project import generated by Copybara.
GitOrigin-RevId: 2c3273caa153ee8eb5786bc8141b85b859e7efd7
2020-04-24 19:36:52 -04:00

25 lines
513 B
Nix

{ buildPythonPackage
, lib
, fetchPypi
}:
buildPythonPackage rec {
pname = "XStatic-Bootstrap";
version = "4.1.3.1";
src = fetchPypi {
inherit version pname;
sha256 = "1800e6bb5fc687604d8a893eee8c7882d800a6f3d6721799016f99a47d1dac0f";
};
# no tests implemented
doCheck = false;
meta = with lib;{
homepage = "https://getbootstrap.com";
description = "Bootstrap packaged static files for python";
license = licenses.mit;
maintainers = with maintainers; [ makefu ];
};
}