scour: call via python-packages.nix

This commit is contained in:
Frederik Rietdijk
2018-11-11 09:54:28 +01:00
parent 3c4f70996e
commit 961180afc8
3 changed files with 9 additions and 7 deletions

View File

@@ -0,0 +1,23 @@
{ lib, buildPythonPackage, fetchPypi, six }:
buildPythonPackage rec {
pname = "scour";
version = "0.37";
src = fetchPypi {
inherit pname version;
sha256 = "05k1f8i8v7sp5v39lian865vwvapq05a6vmvk7fwnxv8kivi6ccn";
};
propagatedBuildInputs = [ six ];
# No tests included in archive
doCheck = false;
meta = with lib; {
description = "An SVG Optimizer / Cleaner ";
homepage = https://github.com/scour-project/scour;
license = licenses.asl20;
maintainers = with maintainers; [ worldofpeace ];
};
}