about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/rcssmin/default.nix
blob: 34070cc2d3bda78ad80d4ccf21fa4195a0949e6c (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.1";

  src = fetchPypi {
    inherit pname version;
    hash = "sha256-T5QAtDZtKfX1RG9Y54VJr6gzjmpZdAxzEV6fasQT3GQ=";
  };

  # 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";
  };
}