pythonPackages.rcssmin: init at 1.0.6

This commit is contained in:
Lancelot SIX 2017-07-11 09:44:12 +02:00
parent fbf3f4d473
commit a2c5fbe56d
No known key found for this signature in database
GPG Key ID: 02E1542BA66FB047
2 changed files with 23 additions and 0 deletions

View File

@ -0,0 +1,21 @@
{ stdenv, buildPythonPackage, fetchPypi }:
buildPythonPackage rec {
pname = "rcssmin";
version = "1.0.6";
name = "${pname}-${version}";
src = fetchPypi {
inherit pname version;
sha256 = "0w42l4dhxghcz7pj3q7hkxp015mvb8z2cq9sfxbl31npsfavd1ya";
};
# The package does not ship tests, and the setup machinary confuses
# tests auto-discovery
doCheck = false;
meta = with stdenv.lib; {
homepage = http://opensource.perlig.de/rcssmin/;
license = licenses.asl20;
description = "CSS minifier written in pure python";
};
}

View File

@ -21072,6 +21072,8 @@ in {
};
};
rcssmin = callPackage ../development/python-modules/rcssmin { };
recommonmark = buildPythonPackage rec {
name = "recommonmark-${version}";
version = "0.4.0";