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

24 lines
559 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";
2020-08-16 18:31:15 +01:00
version = "0.38";
2018-08-04 22:25:42 +01:00
src = fetchPypi {
inherit pname version;
2020-08-16 18:31:15 +01:00
sha256 = "cf50a13dcdf8cfe1861f0ce334f413604e376a7681c5b181e15322f43c3befcd";
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 ];
};
}