mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-29 06:45:54 +03:00
scour: call via python-packages.nix
This commit is contained in:
parent
3c4f70996e
commit
961180afc8
@ -1,8 +1,6 @@
|
||||
{ stdenv, python3 }:
|
||||
{ lib, buildPythonPackage, fetchPypi, six }:
|
||||
|
||||
with python3.pkgs;
|
||||
|
||||
buildPythonApplication rec {
|
||||
buildPythonPackage rec {
|
||||
pname = "scour";
|
||||
version = "0.37";
|
||||
|
||||
@ -13,11 +11,13 @@ buildPythonApplication rec {
|
||||
|
||||
propagatedBuildInputs = [ six ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
# 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 ];
|
||||
platforms = platforms.unix;
|
||||
};
|
||||
}
|
@ -1585,7 +1585,7 @@ with pkgs;
|
||||
|
||||
parallel-rust = callPackage ../tools/misc/parallel-rust { };
|
||||
|
||||
scour = callPackage ../tools/graphics/scour { };
|
||||
scour = with python3Packages; toPythonApplication scour;
|
||||
|
||||
s2png = callPackage ../tools/graphics/s2png { };
|
||||
|
||||
|
@ -11076,6 +11076,8 @@ EOF
|
||||
inherit python;
|
||||
})).python;
|
||||
|
||||
scour = callPackage ../development/python-modules/scour { };
|
||||
|
||||
});
|
||||
|
||||
in fix' (extends overrides packages)
|
||||
|
Loading…
Reference in New Issue
Block a user