mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 23:22:37 +00:00
pythonPackages.rcssmin: init at 1.0.6
This commit is contained in:
parent
fbf3f4d473
commit
a2c5fbe56d
21
pkgs/development/python-modules/rcssmin/default.nix
Normal file
21
pkgs/development/python-modules/rcssmin/default.nix
Normal file
@ -0,0 +1,21 @@
|
||||
{ stdenv, buildPythonPackage, fetchPypi }:
|
||||
buildPythonPackage rec {
|
||||
pname = "rcssmin";
|
||||
version = "1.0.6";
|
||||
name = "${pname}-${version}";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "0w42l4dhxghcz7pj3q7hkxp015mvb8z2cq9sfxbl31npsfavd1ya";
|
||||
};
|
||||
|
||||
# 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/rcssmin/;
|
||||
license = licenses.asl20;
|
||||
description = "CSS minifier written in pure python";
|
||||
};
|
||||
}
|
@ -21072,6 +21072,8 @@ in {
|
||||
};
|
||||
};
|
||||
|
||||
rcssmin = callPackage ../development/python-modules/rcssmin { };
|
||||
|
||||
recommonmark = buildPythonPackage rec {
|
||||
name = "recommonmark-${version}";
|
||||
version = "0.4.0";
|
||||
|
Loading…
Reference in New Issue
Block a user