u.twoha.cc/shell.nix

31 lines
926 B
Nix
Raw Normal View History

2024-09-13 03:24:53 -04:00
{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
buildInputs = with pkgs; [
python311Packages.markdown
python311Packages.pygments
python311Packages.python-frontmatter
python311Packages.mutagen
python311Packages.flask
python311Packages.beautifulsoup4
(python311Packages.buildPythonPackage rec {
pname = "minify-html";
version = "0.15.0";
src = pkgs.fetchurl {
url = "https://files.pythonhosted.org/packages/a0/e2/ed7e62f62a54774c411a0e28ef67a7d1ccb84ab1a933f6b59362c83d78c1/minify_html-0.15.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl";
hash = "sha256-1MSuOQniiWyGXrqjqWk5GR+QTdM3qH11lBMPPfylVRA=";
};
format = "wheel";
doCheck = false;
buildInputs = [];
checkInputs = [];
nativeBuildInputs = [];
propagatedBuildInputs = [];
})
];
packages = with pkgs; [
gnumake
python311
2024-09-18 23:10:48 -04:00
nginx
2024-09-13 03:24:53 -04:00
];
}