My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/rjsmin/default.nix

20 lines
527 B

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