mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 23:22:37 +00:00
pythonPackages.rjsmin: init at 1.0.12
This commit is contained in:
parent
0be14a588f
commit
fbf3f4d473
21
pkgs/development/python-modules/rjsmin/default.nix
Normal file
21
pkgs/development/python-modules/rjsmin/default.nix
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
{ stdenv, buildPythonPackage, fetchPypi }:
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "rjsmin";
|
||||||
|
version = "1.0.12";
|
||||||
|
name = "${pname}-${version}";
|
||||||
|
|
||||||
|
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";
|
||||||
|
};
|
||||||
|
}
|
@ -21222,6 +21222,8 @@ in {
|
|||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
rjsmin = callPackage ../development/python-modules/rjsmin { };
|
||||||
|
|
||||||
pysolr = buildPythonPackage rec {
|
pysolr = buildPythonPackage rec {
|
||||||
name = "pysolr-${version}";
|
name = "pysolr-${version}";
|
||||||
version = "3.3.3";
|
version = "3.3.3";
|
||||||
|
Loading…
Reference in New Issue
Block a user