lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

pythonPackages.xstatic-jquery: move to python-modules

makefu 9fe410fd 0a572417

+26 -15
+25
pkgs/development/python-modules/xstatic-jquery/default.nix
··· 1 + { buildPythonPackage 2 + , lib 3 + , fetchPypi 4 + }: 5 + 6 + buildPythonPackage rec { 7 + pname = "XStatic-jQuery"; 8 + version = "1.10.2.1"; 9 + 10 + src = fetchPypi { 11 + inherit version pname; 12 + sha256 = "018kx4zijflcq8081xx6kmiqf748bsjdq7adij2k91bfp1mnlhc3"; 13 + }; 14 + 15 + # no tests implemented 16 + doCheck = false; 17 + 18 + meta = with lib;{ 19 + homepage = http://jquery.org; 20 + description = "jquery 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
··· 20473 20473 20474 20474 xstatic-bootstrap = callPackage ../development/python-modules/xstatic-bootstrap {}; 20475 20475 20476 - xstatic-jquery = buildPythonPackage rec { 20477 - name = "XStatic-jQuery-${version}"; 20478 - version = "1.10.2.1"; 20479 - src = pkgs.fetchurl { 20480 - url = "mirror://pypi/X/XStatic-jQuery/XStatic-jQuery-${version}.tar.gz"; 20481 - sha256 = "018kx4zijflcq8081xx6kmiqf748bsjdq7adij2k91bfp1mnlhc3"; 20482 - }; 20483 - 20484 - meta = { 20485 - homepage = http://jquery.org; 20486 - description = "jquery packaged static files for python"; 20487 - license = licenses.mit; 20488 - maintainers = [ maintainers.makefu ]; 20489 - }; 20490 - }; 20476 + xstatic-jquery = callPackage ../development/python-modules/xstatic-jquery {}; 20491 20477 20492 20478 xstatic-jquery-file-upload = buildPythonPackage rec { 20493 20479 name = "XStatic-jQuery-File-Upload-${version}";