1{ stdenv, buildPythonPackage, fetchPypi }: 2buildPythonPackage rec { 3 pname = "rjsmin"; 4 version = "1.0.12"; 5 6 src = fetchPypi { 7 inherit pname version; 8 sha256 = "1wc62d0f80kw1kjv8nlxychh0iy66a6pydi4vfvhh2shffm935fx"; 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 stdenv.lib; { 16 homepage = http://opensource.perlig.de/rjsmin/; 17 license = licenses.asl20; 18 description = "Javascript minifier written in python"; 19 }; 20}