Merge pull request #35842 from makefu/pkgs/python-packages/move

move python packages owned by makefu into separate folders in python-modules

Changed files
+214 -123
pkgs
development
python-modules
d2to1
xstatic
xstatic-bootbox
xstatic-bootstrap
xstatic-jquery
xstatic-jquery-file-upload
xstatic-jquery-ui
xstatic-pygments
top-level
+25
pkgs/development/python-modules/d2to1/default.nix
···
···
+
{ buildPythonPackage
+
, lib
+
, fetchFromGitHub
+
, nose
+
}:
+
buildPythonPackage rec {
+
pname = "d2to1";
+
version = "0.2.12";
+
+
checkInputs = [ nose ];
+
+
src = fetchFromGitHub {
+
owner = "embray";
+
repo = pname;
+
rev = version;
+
sha256 = "1q04ab8vjvx7fmq9ckkl8r9hlwwbqiyjbzaa4v1mv5zicfssxwsi";
+
};
+
+
meta = with lib;{
+
description = "Support for distutils2-like setup.cfg files as package metadata";
+
homepage = https://github.com/embray/d2to1;
+
license = licenses.bsd2;
+
maintainers = with maintainers; [ makefu ];
+
};
+
}
+25
pkgs/development/python-modules/xstatic-bootbox/default.nix
···
···
+
{ buildPythonPackage
+
, lib
+
, fetchPypi
+
}:
+
+
buildPythonPackage rec {
+
pname = "XStatic-Bootbox";
+
version = "4.3.0.1";
+
+
src = fetchPypi {
+
inherit version pname;
+
sha256 = "0wks1lsqngn3gvlhzrvaan1zj8w4wr58xi0pfqhrzckbghvvr0gj";
+
};
+
+
# no tests implemented
+
doCheck = false;
+
+
meta = with lib;{
+
homepage = http://bootboxjs.com;
+
description = "Bootboxjs packaged static files for python";
+
license = licenses.mit;
+
maintainers = with maintainers; [ makefu ];
+
};
+
+
}
+25
pkgs/development/python-modules/xstatic-bootstrap/default.nix
···
···
+
{ buildPythonPackage
+
, lib
+
, fetchPypi
+
}:
+
+
buildPythonPackage rec {
+
pname = "XStatic-Bootstrap";
+
version = "3.3.5.1";
+
+
src = fetchPypi {
+
inherit version pname;
+
sha256 = "0jzjq3d4vp2shd2n20f9y53jnnk1cvphkj1v0awgrf18qsy2bmin";
+
};
+
+
# no tests implemented
+
doCheck = false;
+
+
meta = with lib;{
+
homepage = http://getbootstrap.com;
+
description = "Bootstrap packaged static files for python";
+
license = licenses.mit;
+
maintainers = with maintainers; [ makefu ];
+
};
+
+
}
+28
pkgs/development/python-modules/xstatic-jquery-file-upload/default.nix
···
···
+
{ buildPythonPackage
+
, lib
+
, fetchPypi
+
, xstatic-jquery
+
}:
+
+
buildPythonPackage rec {
+
pname = "XStatic-jQuery-File-Upload";
+
version = "9.7.0.1";
+
+
src = fetchPypi {
+
inherit version pname;
+
sha256 = "0d5za18lhzhb54baxq8z73wazq801n3qfj5vgcz7ri3ngx7nb0cg";
+
};
+
+
# no tests implemented
+
doCheck = false;
+
+
propagatedBuildInputs = [ xstatic-jquery ];
+
+
meta = with lib;{
+
homepage = http://plugins.jquery.com/project/jQuery-File-Upload;
+
description = "jquery-file-upload packaged static files for python";
+
license = licenses.mit;
+
maintainers = with maintainers; [ makefu ];
+
};
+
+
}
+28
pkgs/development/python-modules/xstatic-jquery-ui/default.nix
···
···
+
{ buildPythonPackage
+
, lib
+
, fetchPypi
+
, xstatic-jquery
+
}:
+
+
buildPythonPackage rec {
+
pname = "XStatic-jquery-ui";
+
version = "1.12.0.1";
+
+
src = fetchPypi {
+
inherit version pname;
+
sha256 = "0w7mabv6qflpd47g33j3ggp5rv17mqk0xz3bsdswcj97wqpga2l2";
+
};
+
+
# no tests implemented
+
doCheck = false;
+
+
propagatedBuildInputs = [ xstatic-jquery ];
+
+
meta = with lib;{
+
homepage = http://jqueryui.com/;
+
description = "jquery-ui packaged static files for python";
+
license = licenses.mit;
+
maintainers = with maintainers; [ makefu ];
+
};
+
+
}
+25
pkgs/development/python-modules/xstatic-jquery/default.nix
···
···
+
{ 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 ];
+
};
+
+
}
+25
pkgs/development/python-modules/xstatic-pygments/default.nix
···
···
+
{ buildPythonPackage
+
, lib
+
, fetchPypi
+
}:
+
+
buildPythonPackage rec {
+
pname = "XStatic-Pygments";
+
version = "1.6.0.1";
+
+
src = fetchPypi {
+
inherit version pname;
+
sha256 = "0fjqgg433wfdnswn7fad1g6k2x6mf24wfnay2j82j0fwgkdxrr7m";
+
};
+
+
# no tests implemented
+
doCheck = false;
+
+
meta = with lib;{
+
homepage = http://pygments.org;
+
description = "pygments packaged static files for python";
+
license = licenses.mit;
+
maintainers = with maintainers; [ makefu ];
+
};
+
+
}
+25
pkgs/development/python-modules/xstatic/default.nix
···
···
+
{ buildPythonPackage
+
, lib
+
, fetchPypi
+
}:
+
+
buildPythonPackage rec {
+
pname = "XStatic";
+
version = "1.0.1";
+
+
src = fetchPypi {
+
inherit version pname;
+
sha256 = "09npcsyf1ccygjs0qc8kdsv4qqy8gm1m6iv63g9y1fgbcry3vj8f";
+
};
+
+
# no tests implemented
+
doCheck = false;
+
+
meta = with lib;{
+
homepage = https://bitbucket.org/thomaswaldmann/xstatic;
+
description = "Base packaged static files for python";
+
license = licenses.mit;
+
maintainers = with maintainers; [ makefu ];
+
};
+
+
}
+8 -123
pkgs/top-level/python-packages.nix
···
};
};
-
d2to1 = buildPythonPackage rec {
-
name = "d2to1-${version}";
-
version = "0.2.11";
-
-
buildInputs = with self; [ nose ];
-
src = pkgs.fetchurl {
-
url = "mirror://pypi/d/d2to1/d2to1-${version}.tar.gz";
-
sha256 = "1a5z367b7dpd6dgi0w8pymb68aj2pblk8w04l2c8hibhj8dpl2b4";
-
};
-
-
meta = {
-
description = "Support for distutils2-like setup.cfg files as package metadata";
-
homepage = https://pypi.python.org/pypi/d2to1;
-
license = licenses.bsd2;
-
maintainers = [ maintainers.makefu ];
-
};
-
};
ovh = callPackage ../development/python-modules/ovh { };
···
};
};
-
xstatic = buildPythonPackage rec {
-
name = "XStatic-${version}";
-
version = "1.0.1";
-
src = pkgs.fetchurl {
-
url = "mirror://pypi/X/XStatic/XStatic-${version}.tar.gz";
-
sha256 = "09npcsyf1ccygjs0qc8kdsv4qqy8gm1m6iv63g9y1fgbcry3vj8f";
-
};
-
meta = {
-
homepage = https://bitbucket.org/thomaswaldmann/xstatic;
-
description = "Base packaged static files for python";
-
license = licenses.mit;
-
maintainers = [ maintainers.makefu ];
-
};
-
};
-
xlsx2csv = buildPythonPackage rec {
name = "xlsx2csv-${version}";
version = "0.7.2";
···
xmpppy = callPackage ../development/python-modules/xmpppy {};
-
xstatic-bootbox = buildPythonPackage rec {
-
name = "XStatic-Bootbox-${version}";
-
version = "4.3.0.1";
-
src = pkgs.fetchurl {
-
url = "mirror://pypi/X/XStatic-Bootbox/XStatic-Bootbox-${version}.tar.gz";
-
sha256 = "0wks1lsqngn3gvlhzrvaan1zj8w4wr58xi0pfqhrzckbghvvr0gj";
-
};
-
meta = {
-
homepage = http://bootboxjs.com;
-
description = "bootboxjs packaged static files for python";
-
license = licenses.mit;
-
maintainers = [ maintainers.makefu ];
-
};
-
};
-
xstatic-bootstrap = buildPythonPackage rec {
-
name = "XStatic-Bootstrap-${version}";
-
version = "3.3.5.1";
-
src = pkgs.fetchurl {
-
url = "mirror://pypi/X/XStatic-Bootstrap/XStatic-Bootstrap-${version}.tar.gz";
-
sha256 = "0jzjq3d4vp2shd2n20f9y53jnnk1cvphkj1v0awgrf18qsy2bmin";
-
};
-
meta = {
-
homepage = http://getbootstrap.com;
-
description = "bootstrap packaged static files for python";
-
license = licenses.mit;
-
maintainers = [ maintainers.makefu ];
-
};
-
};
-
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-file-upload = buildPythonPackage rec {
-
name = "XStatic-jQuery-File-Upload-${version}";
-
version = "9.7.0.1";
-
propagatedBuildInputs = with self;[ xstatic-jquery ];
-
src = pkgs.fetchurl {
-
url = "mirror://pypi/X/XStatic-jQuery-File-Upload/XStatic-jQuery-File-Upload-${version}.tar.gz";
-
sha256 = "0d5za18lhzhb54baxq8z73wazq801n3qfj5vgcz7ri3ngx7nb0cg";
-
};
-
-
meta = {
-
homepage = http://plugins.jquery.com/project/jQuery-File-Upload;
-
description = "jquery-file-upload packaged static files for python";
-
license = licenses.mit;
-
maintainers = [ maintainers.makefu ];
-
};
-
};
-
-
xstatic-jquery-ui = buildPythonPackage rec {
-
name = "XStatic-jquery-ui-${version}";
-
version = "1.12.0.1";
-
propagatedBuildInputs = with self; [ xstatic-jquery ];
-
src = pkgs.fetchurl {
-
url = "mirror://pypi/X/XStatic-jquery-ui/XStatic-jquery-ui-${version}.tar.gz";
-
sha256 = "0w7mabv6qflpd47g33j3ggp5rv17mqk0xz3bsdswcj97wqpga2l2";
-
};
-
-
meta = {
-
homepage = http://jqueryui.com/;
-
description = "jquery-ui packaged static files for python";
-
license = licenses.mit;
-
maintainers = [ maintainers.makefu ];
-
};
-
};
-
-
xstatic-pygments = buildPythonPackage rec {
-
name = "XStatic-Pygments-${version}";
-
version = "1.6.0.1";
-
src = pkgs.fetchurl {
-
url = "mirror://pypi/X/XStatic-Pygments/XStatic-Pygments-${version}.tar.gz";
-
sha256 = "0fjqgg433wfdnswn7fad1g6k2x6mf24wfnay2j82j0fwgkdxrr7m";
-
};
-
-
meta = {
-
homepage = http://pygments.org;
-
description = "pygments packaged static files for python";
-
license = licenses.bsd2;
-
maintainers = [ maintainers.makefu ];
-
};
-
};
xvfbwrapper = callPackage ../development/python-modules/xvfbwrapper {
inherit (pkgs.xorg) xorgserver;
···
};
};
+
d2to1 = callPackage ../development/python-modules/d2to1 { };
ovh = callPackage ../development/python-modules/ovh { };
···
};
};
xlsx2csv = buildPythonPackage rec {
name = "xlsx2csv-${version}";
version = "0.7.2";
···
xmpppy = callPackage ../development/python-modules/xmpppy {};
+
xstatic = callPackage ../development/python-modules/xstatic {};
+
xstatic-bootbox = callPackage ../development/python-modules/xstatic-bootbox {};
+
xstatic-bootstrap = callPackage ../development/python-modules/xstatic-bootstrap {};
+
xstatic-jquery = callPackage ../development/python-modules/xstatic-jquery {};
+
xstatic-jquery-file-upload = callPackage ../development/python-modules/xstatic-jquery-file-upload {};
+
xstatic-jquery-ui = callPackage ../development/python-modules/xstatic-jquery-ui {};
+
xstatic-pygments = callPackage ../development/python-modules/xstatic-pygments {};
xvfbwrapper = callPackage ../development/python-modules/xvfbwrapper {
inherit (pkgs.xorg) xorgserver;