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