1
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-06-29 20:45:29 +03:00
nixpkgs/pkgs/development/python-modules/scour/default.nix

24 lines
559 B
Nix
Raw Normal View History

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