summary refs log tree commit diff
path: root/pkgs/development/python-modules/rjsmin/default.nix
blob: d3f09388affa8cc6d4b06b6dc39f0e6dc8ffeb0f (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.1";

  src = fetchPypi {
    inherit pname version;
    hash = "sha256-H5gr6OARQ4d3qUMHJ5tAE0o5NfwPB5MS7imXJbivVBE=";
  };

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