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/rcssmin/default.nix

20 lines
527 B

{ lib, buildPythonPackage, fetchPypi }:
buildPythonPackage rec {
pname = "rcssmin";
version = "1.1.0";
src = fetchPypi {
inherit pname version;
sha256 = "27fc400627fd3d328b7fe95af2a01f5d0af6b5af39731af5d071826a1f08e362";
};
# The package does not ship tests, and the setup machinary confuses
# tests auto-discovery
doCheck = false;
meta = with lib; {
homepage = "http://opensource.perlig.de/rcssmin/";
license = licenses.asl20;
description = "CSS minifier written in pure python";
};
}