pythonPackages.xstatic-bootstrap: move to python-modules

This commit is contained in:
makefu
2018-02-27 10:41:47 +01:00
parent ce8fbda108
commit 0a57241733
2 changed files with 26 additions and 15 deletions

View File

@@ -0,0 +1,25 @@
{ buildPythonPackage
, lib
, fetchPypi
}:
buildPythonPackage rec {
pname = "XStatic-Bootstrap";
version = "3.3.5.1";
src = fetchPypi {
inherit version pname;
sha256 = "0jzjq3d4vp2shd2n20f9y53jnnk1cvphkj1v0awgrf18qsy2bmin";
};
# no tests implemented
doCheck = false;
meta = with lib;{
homepage = http://getbootstrap.com;
description = "Bootstrap packaged static files for python";
license = licenses.mit;
maintainers = with maintainers; [ makefu ];
};
}