pythonPackages.xstatic-jquery: move to python-modules

This commit is contained in:
makefu 2018-02-27 10:46:52 +01:00
parent 0a57241733
commit 9fe410fd49
No known key found for this signature in database
GPG Key ID: 36F7711F3FC0F225
2 changed files with 26 additions and 15 deletions

View File

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

View File

@ -20473,21 +20473,7 @@ EOF
xstatic-bootstrap = callPackage ../development/python-modules/xstatic-bootstrap {};
xstatic-jquery = buildPythonPackage rec {
name = "XStatic-jQuery-${version}";
version = "1.10.2.1";
src = pkgs.fetchurl {
url = "mirror://pypi/X/XStatic-jQuery/XStatic-jQuery-${version}.tar.gz";
sha256 = "018kx4zijflcq8081xx6kmiqf748bsjdq7adij2k91bfp1mnlhc3";
};
meta = {
homepage = http://jquery.org;
description = "jquery packaged static files for python";
license = licenses.mit;
maintainers = [ maintainers.makefu ];
};
};
xstatic-jquery = callPackage ../development/python-modules/xstatic-jquery {};
xstatic-jquery-file-upload = buildPythonPackage rec {
name = "XStatic-jQuery-File-Upload-${version}";