2021-06-20 15:14:51 +01:00
|
|
|
{ lib, stdenv, fetchFromGitHub, python3, python3Packages }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "postiats-utilities";
|
2021-08-17 15:40:40 +01:00
|
|
|
version = "2.1.1";
|
2021-06-20 15:14:51 +01:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "Hibou57";
|
|
|
|
repo = "PostiATS-Utilities";
|
|
|
|
rev = "v${version}";
|
2021-08-17 15:40:40 +01:00
|
|
|
sha256 = "sha256-QeBbv5lwqL2ARjB+RGyBHeuibaxugffBLhC9lYs+5tE=";
|
2016-05-12 13:35:14 +01:00
|
|
|
};
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/Hibou57/PostiATS-Utilities";
|
2016-05-12 13:35:14 +01:00
|
|
|
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/lib/${python3.libPrefix}/site-packages"
|
|
|
|
mkdir -p "$libdir"
|
|
|
|
cp -r postiats "$libdir"
|
|
|
|
|
|
|
|
mkdir -p "$out/bin"
|
|
|
|
install pats-* "$out/bin"
|
|
|
|
|
|
|
|
wrapPythonPrograms
|
|
|
|
'';
|
|
|
|
}
|