1{ lib, buildPythonPackage, fetchPypi }: 2buildPythonPackage rec { 3 pname = "rcssmin"; 4 version = "1.0.6"; 5 6 src = fetchPypi { 7 inherit pname version; 8 sha256 = "0w42l4dhxghcz7pj3q7hkxp015mvb8z2cq9sfxbl31npsfavd1ya"; 9 }; 10 11 # The package does not ship tests, and the setup machinary confuses 12 # tests auto-discovery 13 doCheck = false; 14 15 meta = with lib; { 16 homepage = "http://opensource.perlig.de/rcssmin/"; 17 license = licenses.asl20; 18 description = "CSS minifier written in pure python"; 19 }; 20}