My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/xstatic-bootbox/default.nix

25 lines
507 B

{ buildPythonPackage
, lib
, fetchPypi
}:
buildPythonPackage rec {
pname = "XStatic-Bootbox";
version = "5.5.1.1";
src = fetchPypi {
inherit version pname;
sha256 = "4b2120bb33a1d8ada8f9e0532ad99987aa03879b17b08bfdc6b8326d6eb7c205";
};
# no tests implemented
doCheck = false;
meta = with lib;{
homepage = "http://bootboxjs.com";
description = "Bootboxjs packaged static files for python";
license = licenses.mit;
maintainers = with maintainers; [ makefu ];
};
}