about summary refs log tree commit diff
path: root/pkgs/development/tools/postiats-utilities/default.nix
blob: 6ac021e1ba0924093405e28fd0037f9e568eb6bf (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
{ lib, stdenv, fetchFromGitHub, python3, python3Packages }:

stdenv.mkDerivation rec {
  pname = "postiats-utilities";
  version = "2.1.1";
  src = fetchFromGitHub {
    owner = "Hibou57";
    repo = "PostiATS-Utilities";
    rev = "v${version}";
    sha256 = "sha256-QeBbv5lwqL2ARjB+RGyBHeuibaxugffBLhC9lYs+5tE=";
  };

  meta = with lib; {
    homepage = "https://github.com/Hibou57/PostiATS-Utilities";
    license = licenses.bsd2;
    platforms = platforms.linux;
    maintainers = [ maintainers.ttuegel ];
  };

  buildInputs = [ python3 python3Packages.wrapPython ];

  postPatch = ''
    for f in pats-* postiats/*.py; do
      sed -i "$f" -e "1 s,python3,python,"
    done
  '';

  installPhase = ''
    libdir="$out/${python3.sitePackages}"
    mkdir -p "$libdir"
    cp -r postiats "$libdir"

    mkdir -p "$out/bin"
    install pats-* "$out/bin"

    wrapPythonPrograms
  '';
}