mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 07:31:26 +00:00
pythonPackages.xstatic-jquery: move to python-modules
This commit is contained in:
parent
0a57241733
commit
9fe410fd49
25
pkgs/development/python-modules/xstatic-jquery/default.nix
Normal file
25
pkgs/development/python-modules/xstatic-jquery/default.nix
Normal 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 ];
|
||||||
|
};
|
||||||
|
|
||||||
|
}
|
@ -20473,21 +20473,7 @@ EOF
|
|||||||
|
|
||||||
xstatic-bootstrap = callPackage ../development/python-modules/xstatic-bootstrap {};
|
xstatic-bootstrap = callPackage ../development/python-modules/xstatic-bootstrap {};
|
||||||
|
|
||||||
xstatic-jquery = buildPythonPackage rec {
|
xstatic-jquery = callPackage ../development/python-modules/xstatic-jquery {};
|
||||||
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-file-upload = buildPythonPackage rec {
|
xstatic-jquery-file-upload = buildPythonPackage rec {
|
||||||
name = "XStatic-jQuery-File-Upload-${version}";
|
name = "XStatic-jQuery-File-Upload-${version}";
|
||||||
|
Loading…
Reference in New Issue
Block a user