nixpkgs/pkgs/development/python-modules/cssmin/default.nix
c0bw3b 9367367dfd Treewide: fix URL permanent redirects
Permanent redirects on homepages and/or source URLs
as reported by Repology
2019-11-16 01:41:23 +01:00

21 lines
457 B
Nix

{ stdenv, buildPythonPackage, fetchPypi }:
buildPythonPackage rec {
pname = "cssmin";
version = "0.2.0";
src = fetchPypi {
inherit pname version;
sha256 = "1dk723nfm2yf8cp4pj785giqlwv42l0kj8rk40kczvq1hk6g04p0";
};
# no tests
doCheck = false;
meta = with stdenv.lib; {
description = "A Python port of the YUI CSS compression algorithm";
homepage = https://github.com/zacharyvoase/cssmin;
license = licenses.bsd3;
};
}