mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 23:22:37 +00:00
pythonPackages.xstatic-pygments: move to python-modules
This commit is contained in:
parent
0b5af0399d
commit
b4eee22b6f
25
pkgs/development/python-modules/xstatic-pygments/default.nix
Normal file
25
pkgs/development/python-modules/xstatic-pygments/default.nix
Normal 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 ];
|
||||
};
|
||||
|
||||
}
|
@ -20479,21 +20479,7 @@ EOF
|
||||
|
||||
xstatic-jquery-ui = callPackage ../development/python-modules/xstatic-jquery-ui {};
|
||||
|
||||
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;
|
||||
|
Loading…
Reference in New Issue
Block a user