summary refs log tree commit diff
path: root/pkgs/tools/graphics/scour/default.nix
blob: 11932aabe0bbd001b1b280d8cadada9260a569a7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{ stdenv, python3 }:

with python3.pkgs;

buildPythonApplication rec {
  pname = "scour";
  version = "0.37";

  src = fetchPypi {
    inherit pname version;
    sha256 = "05k1f8i8v7sp5v39lian865vwvapq05a6vmvk7fwnxv8kivi6ccn";
  };

  propagatedBuildInputs = [ six ];

  meta = with stdenv.lib; {
    description = "An SVG Optimizer / Cleaner ";
    homepage    = https://github.com/scour-project/scour;
    license     = licenses.asl20;
    maintainers = with maintainers; [ worldofpeace ];
    platforms   = platforms.unix;
  };
}