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

move python packages owned by makefu into separate folders in python-modules
This commit is contained in:
Robert Schütz 2018-02-28 10:38:13 +01:00 committed by GitHub
commit 04dd1987a3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
9 changed files with 214 additions and 123 deletions

View File

@ -0,0 +1,25 @@
{ 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 ];
};
}

View File

@ -0,0 +1,25 @@
{ 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 ];
};
}

View File

@ -0,0 +1,25 @@
{ 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 ];
};
}

View File

@ -0,0 +1,28 @@
{ 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 ];
};
}

View File

@ -0,0 +1,28 @@
{ 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 ];
};
}

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

@ -0,0 +1,25 @@
{ 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 ];
};
}

View File

@ -0,0 +1,25 @@
{ 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 ];
};
}

View File

@ -20262,23 +20262,7 @@ EOF
};
};
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 ];
};
};
d2to1 = callPackage ../development/python-modules/d2to1 { };
ovh = callPackage ../development/python-modules/ovh { };
@ -20370,21 +20354,6 @@ EOF
};
};
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";
@ -20402,103 +20371,19 @@ EOF
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";
};
xstatic = callPackage ../development/python-modules/xstatic {};
meta = {
homepage = http://bootboxjs.com;
description = "bootboxjs packaged static files for python";
license = licenses.mit;
maintainers = [ maintainers.makefu ];
};
};
xstatic-bootbox = callPackage ../development/python-modules/xstatic-bootbox {};
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";
};
xstatic-bootstrap = callPackage ../development/python-modules/xstatic-bootstrap {};
meta = {
homepage = http://getbootstrap.com;
description = "bootstrap packaged static files for python";
license = licenses.mit;
maintainers = [ maintainers.makefu ];
};
};
xstatic-jquery = callPackage ../development/python-modules/xstatic-jquery {};
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";
};
xstatic-jquery-file-upload = callPackage ../development/python-modules/xstatic-jquery-file-upload {};
meta = {
homepage = http://jquery.org;
description = "jquery packaged static files for python";
license = licenses.mit;
maintainers = [ maintainers.makefu ];
};
};
xstatic-jquery-ui = callPackage ../development/python-modules/xstatic-jquery-ui {};
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 ];
};
};
xstatic-pygments = callPackage ../development/python-modules/xstatic-pygments {};
xvfbwrapper = callPackage ../development/python-modules/xvfbwrapper {
inherit (pkgs.xorg) xorgserver;