mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 06:01:15 +00:00
htmlmin: init at 0.1.10 (#24945)
This commit is contained in:
parent
f029fc8cdc
commit
3efdf24584
20
pkgs/development/python-modules/htmlmin.nix
Normal file
20
pkgs/development/python-modules/htmlmin.nix
Normal file
|
@ -0,0 +1,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];
|
||||
};
|
||||
}
|
|
@ -7749,6 +7749,9 @@ in {
|
|||
};
|
||||
});
|
||||
|
||||
|
||||
htmlmin = callPackage ../development/python-modules/htmlmin.nix {};
|
||||
|
||||
httpauth = buildPythonPackage rec {
|
||||
version = "0.3";
|
||||
name = "httpauth-${version}";
|
||||
|
|
Loading…
Reference in a new issue