2018-11-11 00:54:28 -08:00
|
|
|
{ lib, buildPythonPackage, fetchPypi, six }:
|
2018-08-04 14:25:42 -07:00
|
|
|
|
2018-11-11 00:54:28 -08:00
|
|
|
buildPythonPackage rec {
|
2018-08-04 14:25:42 -07:00
|
|
|
pname = "scour";
|
2020-11-29 06:04:42 -08:00
|
|
|
version = "0.38.2";
|
2018-08-04 14:25:42 -07:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2020-11-29 06:04:42 -08:00
|
|
|
sha256 = "6881ec26660c130c5ecd996ac6f6b03939dd574198f50773f2508b81a68e0daf";
|
2018-08-04 14:25:42 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
propagatedBuildInputs = [ six ];
|
|
|
|
|
2018-11-11 00:54:28 -08:00
|
|
|
# No tests included in archive
|
|
|
|
doCheck = false;
|
|
|
|
|
|
|
|
meta = with lib; {
|
2018-08-04 14:25:42 -07:00
|
|
|
description = "An SVG Optimizer / Cleaner ";
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "https://github.com/scour-project/scour";
|
2018-08-04 14:25:42 -07:00
|
|
|
license = licenses.asl20;
|
|
|
|
maintainers = with maintainers; [ worldofpeace ];
|
|
|
|
};
|
|
|
|
}
|