summary refs log tree commit diff
path: root/pkgs/development/python-modules/rjsmin/default.nix
blob: 0ec53528df2e49704ae5f956d938423c9dff0481 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{ stdenv, buildPythonPackage, fetchPypi }:
buildPythonPackage rec {
  pname = "rjsmin";
  version = "1.0.12";

  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";
  };
}