summary refs log tree commit diff
path: root/pkgs/development/python-modules/htmlmin.nix
blob: 35f86479a4e37db299b43fa8d439291c46bc2173 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{ stdenv, buildPythonPackage, fetchPypi }:
buildPythonPackage rec {
  pname = "htmlmin";
  version = "0.1.10";
  name = "${pname}-${version}";
  src = fetchPypi {
    inherit pname version;
    sha256 = "ca5c5dfbb0fa58562e5cbc8dc026047f6cb431d4333504b11853853be448aa63";
  };

  # 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 = [stdenv.lib.maintainers.ahmedtd];
  };
}