lol

pythonPackages.xstatic: move to python-modules

makefu fa23628f 1aa8e259

+27 -15
+25
pkgs/development/python-modules/xstatic/default.nix
··· 1 + { buildPythonPackage 2 + , lib 3 + , fetchPypi 4 + }: 5 + 6 + buildPythonPackage rec { 7 + pname = "XStatic"; 8 + version = "1.0.1"; 9 + 10 + src = fetchPypi { 11 + inherit version pname; 12 + sha256 = "09npcsyf1ccygjs0qc8kdsv4qqy8gm1m6iv63g9y1fgbcry3vj8f"; 13 + }; 14 + 15 + # no tests implemented 16 + doCheck = false; 17 + 18 + meta = with lib;{ 19 + homepage = https://bitbucket.org/thomaswaldmann/xstatic; 20 + description = "Base packaged static files for python"; 21 + license = licenses.mit; 22 + maintainers = with maintainers; [ makefu ]; 23 + }; 24 + 25 + }
+2 -15
pkgs/top-level/python-packages.nix
··· 20450 20450 }; 20451 20451 }; 20452 20452 20453 - xstatic = buildPythonPackage rec { 20454 - name = "XStatic-${version}"; 20455 - version = "1.0.1"; 20456 - src = pkgs.fetchurl { 20457 - url = "mirror://pypi/X/XStatic/XStatic-${version}.tar.gz"; 20458 - sha256 = "09npcsyf1ccygjs0qc8kdsv4qqy8gm1m6iv63g9y1fgbcry3vj8f"; 20459 - }; 20460 - meta = { 20461 - homepage = https://bitbucket.org/thomaswaldmann/xstatic; 20462 - description = "Base packaged static files for python"; 20463 - license = licenses.mit; 20464 - maintainers = [ maintainers.makefu ]; 20465 - }; 20466 - }; 20467 - 20468 20453 xlsx2csv = buildPythonPackage rec { 20469 20454 name = "xlsx2csv-${version}"; 20470 20455 version = "0.7.2"; ··· 20481 20466 }; 20482 20467 20483 20468 xmpppy = callPackage ../development/python-modules/xmpppy {}; 20469 + 20470 + xstatic = callPackage ../development/python-modules/xstatic {}; 20484 20471 20485 20472 xstatic-bootbox = buildPythonPackage rec { 20486 20473 name = "XStatic-Bootbox-${version}";