pythonPackages.rjsmin: init at 1.0.12

This commit is contained in:
Lancelot SIX 2017-07-11 09:43:30 +02:00
parent 0be14a588f
commit fbf3f4d473
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 = "rjsmin";
version = "1.0.12";
name = "${pname}-${version}";
src = fetchPypi {
inherit pname version;
sha256 = "1wc62d0f80kw1kjv8nlxychh0iy66a6pydi4vfvhh2shffm935fx";
};
# 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/rjsmin/;
license = licenses.asl20;
description = "Javascript minifier written in python";
};
}

View file

@ -21222,6 +21222,8 @@ in {
};
};
rjsmin = callPackage ../development/python-modules/rjsmin { };
pysolr = buildPythonPackage rec {
name = "pysolr-${version}";
version = "3.3.3";