lol

pythonPackages.xstatic-bootstrap: move to python-modules

makefu 0a572417 ce8fbda1

+26 -15
+25
pkgs/development/python-modules/xstatic-bootstrap/default.nix
··· 1 + { buildPythonPackage 2 + , lib 3 + , fetchPypi 4 + }: 5 + 6 + buildPythonPackage rec { 7 + pname = "XStatic-Bootstrap"; 8 + version = "3.3.5.1"; 9 + 10 + src = fetchPypi { 11 + inherit version pname; 12 + sha256 = "0jzjq3d4vp2shd2n20f9y53jnnk1cvphkj1v0awgrf18qsy2bmin"; 13 + }; 14 + 15 + # no tests implemented 16 + doCheck = false; 17 + 18 + meta = with lib;{ 19 + homepage = http://getbootstrap.com; 20 + description = "Bootstrap packaged static files for python"; 21 + license = licenses.mit; 22 + maintainers = with maintainers; [ makefu ]; 23 + }; 24 + 25 + }
+1 -15
pkgs/top-level/python-packages.nix
··· 20471 20471 20472 20472 xstatic-bootbox = callPackage ../development/python-modules/xstatic-bootbox {}; 20473 20473 20474 - xstatic-bootstrap = buildPythonPackage rec { 20475 - name = "XStatic-Bootstrap-${version}"; 20476 - version = "3.3.5.1"; 20477 - src = pkgs.fetchurl { 20478 - url = "mirror://pypi/X/XStatic-Bootstrap/XStatic-Bootstrap-${version}.tar.gz"; 20479 - sha256 = "0jzjq3d4vp2shd2n20f9y53jnnk1cvphkj1v0awgrf18qsy2bmin"; 20480 - }; 20481 - 20482 - meta = { 20483 - homepage = http://getbootstrap.com; 20484 - description = "bootstrap packaged static files for python"; 20485 - license = licenses.mit; 20486 - maintainers = [ maintainers.makefu ]; 20487 - }; 20488 - }; 20474 + xstatic-bootstrap = callPackage ../development/python-modules/xstatic-bootstrap {}; 20489 20475 20490 20476 xstatic-jquery = buildPythonPackage rec { 20491 20477 name = "XStatic-jQuery-${version}";