nixpkgs/pkgs/development/python-modules/rjsmin/default.nix

21 lines
524 B
Nix
Raw Normal View History

2017-07-11 09:43:30 +02:00
{ 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";
};
}