pythonPackages.xstatic-bootbox: move to python-modules

This commit is contained in:
makefu
2018-02-27 10:37:19 +01:00
parent fa23628f04
commit ce8fbda108
2 changed files with 26 additions and 15 deletions

View File

@@ -0,0 +1,25 @@
{ buildPythonPackage
, lib
, fetchPypi
}:
buildPythonPackage rec {
pname = "XStatic-Bootbox";
version = "4.3.0.1";
src = fetchPypi {
inherit version pname;
sha256 = "0wks1lsqngn3gvlhzrvaan1zj8w4wr58xi0pfqhrzckbghvvr0gj";
};
# 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 ];
};
}