evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / by-name / sc / scons / package.nix
blobf2b6790d1aad835ebd657954c8aa651190e0a4a3
1 { lib, fetchFromGitHub, fetchpatch, python3Packages }:
2 python3Packages.buildPythonApplication rec {
3   pname = "scons";
4   version = "4.7.0";
6   src = fetchFromGitHub {
7     owner = "Scons";
8     repo = "scons";
9     rev = version;
10     hash = "sha256-7VzGuz9CAUF6MRCEpj5z1FkZD19/Ic+YBukYQocvkr0=";
11   };
13   pyproject = true;
15   patches = [
16     ./env.patch
17     ./no-man-pages.patch
18     # Fix builds on sandboxed Darwin: https://github.com/SCons/scons/pull/4603
19     (fetchpatch {
20       url = "https://github.com/SCons/scons/commit/2d5e3a40a613225b329776ab9dbd9abcd2d24222.patch";
21       hash = "sha256-N1xQOvsPTi7a2maEZJQVu6vJ9AoWMqDOsScXHp9KuXI=";
22     })
23   ];
25   build-system = [
26     python3Packages.setuptools
27   ];
29   setupHook = ./setup-hook.sh;
31   passthru = {
32     # expose the used python version so tools using this (and extensing scos
33     # with other python modules) can use the exact same python version.
34     inherit (python3Packages) python;
35   };
37   meta = {
38     description = "Improved, cross-platform substitute for Make";
39     longDescription = ''
40       SCons is an Open Source software construction tool. Think of SCons as an
41       improved, cross-platform substitute for the classic Make utility with
42       integrated functionality similar to autoconf/automake and compiler caches
43       such as ccache. In short, SCons is an easier, more reliable and faster way
44       to build software.
45     '';
46     homepage = "https://scons.org/";
47     license = lib.licenses.mit;
48     maintainers = with lib.maintainers; [ AndersonTorres ];
49   };