pythonPackages.xstatic: move to python-modules
This commit is contained in:
parent
1aa8e259c7
commit
fa23628f04
25
pkgs/development/python-modules/xstatic/default.nix
Normal file
25
pkgs/development/python-modules/xstatic/default.nix
Normal 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 ];
|
||||
};
|
||||
|
||||
}
|
@ -20450,21 +20450,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";
|
||||
@ -20482,6 +20467,8 @@ EOF
|
||||
|
||||
xmpppy = callPackage ../development/python-modules/xmpppy {};
|
||||
|
||||
xstatic = callPackage ../development/python-modules/xstatic {};
|
||||
|
||||
xstatic-bootbox = buildPythonPackage rec {
|
||||
name = "XStatic-Bootbox-${version}";
|
||||
version = "4.3.0.1";
|
||||
|
Loading…
Reference in New Issue
Block a user