blob: 6f37fd300306d755c1dcd78661220bf4d86f60c3 (
plain)
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
|
{
buildPythonPackage,
lib,
fetchPypi,
}:
buildPythonPackage rec {
pname = "xstatic-bootbox";
version = "5.5.1.1";
format = "setuptools";
src = fetchPypi {
pname = "XStatic-Bootbox";
inherit version;
sha256 = "4b2120bb33a1d8ada8f9e0532ad99987aa03879b17b08bfdc6b8326d6eb7c205";
};
# no tests implemented
doCheck = false;
meta = {
homepage = "https://bootboxjs.com";
description = "Bootboxjs packaged static files for python";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ makefu ];
};
}
|