Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

python: htmlmin: 0.1.11 -> 0.1.12

+2 -2
+2 -2
pkgs/development/python-modules/htmlmin/default.nix
··· 1 1 { stdenv, buildPythonPackage, fetchPypi }: 2 2 buildPythonPackage rec { 3 3 pname = "htmlmin"; 4 - version = "0.1.11"; 4 + version = "0.1.12"; 5 5 name = "${pname}-${version}"; 6 6 src = fetchPypi { 7 7 inherit pname version; 8 - sha256 = "f27fb96fdddeb1725ee077be532c7bea23288c69d0e996e7798f24fae7a14e5e"; 8 + sha256 = "50c1ef4630374a5d723900096a961cff426dff46b48f34d194a81bbe14eca178"; 9 9 }; 10 10 11 11 # Tests run fine in a normal source checkout, but not when being built by nix.