mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-22 21:53:32 +00:00
0215034f25
when they already rely on SRI hashes.
21 lines
512 B
Nix
21 lines
512 B
Nix
{ 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";
|
|
};
|
|
}
|