Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / python-modules / scour / default.nix
blobb38d095a845f8acc52854fb6f520ec5fa2abfcab
1 { lib, buildPythonPackage, fetchPypi, six }:
3 buildPythonPackage rec {
4   pname = "scour";
5   version = "0.38.2";
7   src = fetchPypi {
8     inherit pname version;
9     sha256 = "6881ec26660c130c5ecd996ac6f6b03939dd574198f50773f2508b81a68e0daf";
10   };
12   propagatedBuildInputs = [ six ];
14   # No tests included in archive
15   doCheck = false;
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   };