Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 20.09 559 B view raw
1{ lib, buildPythonPackage, fetchPypi, six }: 2 3buildPythonPackage rec { 4 pname = "scour"; 5 version = "0.38"; 6 7 src = fetchPypi { 8 inherit pname version; 9 sha256 = "cf50a13dcdf8cfe1861f0ce334f413604e376a7681c5b181e15322f43c3befcd"; 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}