This commit was created by a combination of scripts and tools: - an ast-grep script to prefix things in meta with `lib.`, - a modified nixf-diagnose / nixf combination to remove unused `with lib;`, and - regular nixfmt. Co-authored-by: Wolfgang Walther <walther@technowledgy.de>
28 lines
561 B
Nix
28 lines
561 B
Nix
{
|
|
buildPythonPackage,
|
|
lib,
|
|
fetchPypi,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "xstatic-pygments";
|
|
version = "2.9.0.1";
|
|
format = "setuptools";
|
|
|
|
src = fetchPypi {
|
|
pname = "XStatic-Pygments";
|
|
inherit version;
|
|
sha256 = "082c1e9fe606fbbef474f78b6fdb19e9a2efcc7a9b7d94163cf66f7bfae75762";
|
|
};
|
|
|
|
# no tests implemented
|
|
doCheck = false;
|
|
|
|
meta = {
|
|
homepage = "https://pygments.org";
|
|
description = "Pygments packaged static files for python";
|
|
license = lib.licenses.mit;
|
|
maintainers = with lib.maintainers; [ makefu ];
|
|
};
|
|
}
|