1{
2 lib,
3 buildPythonPackage,
4 fetchPypi,
5 six,
6}:
7
8buildPythonPackage rec {
9 pname = "scour";
10 version = "0.38.2";
11 format = "setuptools";
12
13 src = fetchPypi {
14 inherit pname version;
15 sha256 = "6881ec26660c130c5ecd996ac6f6b03939dd574198f50773f2508b81a68e0daf";
16 };
17
18 propagatedBuildInputs = [ six ];
19
20 # No tests included in archive
21 doCheck = false;
22
23 meta = with lib; {
24 description = "SVG Optimizer / Cleaner";
25 mainProgram = "scour";
26 homepage = "https://github.com/scour-project/scour";
27 license = licenses.asl20;
28 maintainers = with maintainers; [ worldofpeace ];
29 };
30}