nixpkgs/pkgs/development/tools/postiats-utilities/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

39 lines
889 B
Nix
Raw Normal View History

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