Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 17.09 540 B view raw
1{ stdenv, buildPythonPackage, fetchPypi }: 2buildPythonPackage rec { 3 pname = "csscompressor"; 4 version = "0.9.4"; 5 name = "${pname}-${version}"; 6 7 src = fetchPypi { 8 inherit pname version; 9 sha256 = "0e12f125b88379d7b680636d94a3c8fa14bed1de2358f7f9a9e6749e222cff3b"; 10 }; 11 12 doCheck = false; # No tests 13 14 meta = { 15 description = "A python port of YUI CSS Compressor"; 16 homepage = https://pypi.python.org/pypi/csscompressor; 17 license = stdenv.lib.licenses.bsd3; 18 maintainers = [stdenv.lib.maintainers.ahmedtd]; 19 }; 20}