nixpkgs/pkgs/development/python-modules/scour/default.nix

24 lines
561 B
Nix
Raw Normal View History

2018-11-11 08:54:28 +00:00
{ lib, buildPythonPackage, fetchPypi, six }:
2018-08-04 22:25:42 +01:00
2018-11-11 08:54:28 +00:00
buildPythonPackage rec {
2018-08-04 22:25:42 +01:00
pname = "scour";
version = "0.38.2";
2018-08-04 22:25:42 +01:00
src = fetchPypi {
inherit pname version;
sha256 = "6881ec26660c130c5ecd996ac6f6b03939dd574198f50773f2508b81a68e0daf";
2018-08-04 22:25:42 +01:00
};
propagatedBuildInputs = [ six ];
2018-11-11 08:54:28 +00:00
# No tests included in archive
doCheck = false;
meta = with lib; {
2018-08-04 22:25:42 +01:00
description = "An SVG Optimizer / Cleaner ";
homepage = "https://github.com/scour-project/scour";
2018-08-04 22:25:42 +01:00
license = licenses.asl20;
maintainers = with maintainers; [ worldofpeace ];
};
}