mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
20 lines
552 B
Nix
20 lines
552 B
Nix
{ stdenv, buildPythonPackage, fetchPypi }:
|
|
buildPythonPackage rec {
|
|
pname = "htmlmin";
|
|
version = "0.1.12";
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "50c1ef4630374a5d723900096a961cff426dff46b48f34d194a81bbe14eca178";
|
|
};
|
|
|
|
# Tests run fine in a normal source checkout, but not when being built by nix.
|
|
doCheck = false;
|
|
|
|
meta = {
|
|
description = "A configurable HTML Minifier with safety features";
|
|
homepage = "https://pypi.python.org/pypi/htmlmin";
|
|
license = stdenv.lib.licenses.bsd3;
|
|
maintainers = [];
|
|
};
|
|
}
|