about summary refs log tree commit diff
path: root/pkgs/development/python-modules/rcssmin/default.nix
blob: ab74662e3b4c70cfc75162093d2d9be896d7d86c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{ 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";
  };
}