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