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

  src = fetchPypi {
    inherit pname version;
    sha256 = "6c529feb6c400984452494c52dd9fdf59185afeacca2afc5174a28ab37751a1b";
  };

  # The package does not ship tests, and the setup machinary confuses
  # tests auto-discovery
  doCheck = false;

  meta = with lib; {
    homepage = "http://opensource.perlig.de/rjsmin/";
    license = licenses.asl20;
    description = "Javascript minifier written in python";
  };
}