depot/third_party/nixpkgs/pkgs/development/python-modules/scour/default.nix
Default email bcb2f287e1 Project import generated by Copybara.
GitOrigin-RevId: d603719ec6e294f034936c0d0dc06f689d91b6c3
2024-06-20 20:27:18 +05:30

30 lines
612 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
six,
}:
buildPythonPackage rec {
pname = "scour";
version = "0.38.2";
format = "setuptools";
src = fetchPypi {
inherit pname version;
sha256 = "6881ec26660c130c5ecd996ac6f6b03939dd574198f50773f2508b81a68e0daf";
};
propagatedBuildInputs = [ six ];
# No tests included in archive
doCheck = false;
meta = with lib; {
description = "SVG Optimizer / Cleaner ";
mainProgram = "scour";
homepage = "https://github.com/scour-project/scour";
license = licenses.asl20;
maintainers = with maintainers; [ worldofpeace ];
};
}