nixpkgs/pkgs/development/tools/pyre/default.nix

138 lines
3.8 KiB
Nix
Raw Normal View History

2018-12-21 13:22:08 +00:00
{ stdenv, fetchFromGitHub, ocamlPackages, writeScript
2019-03-31 14:22:43 +00:00
, dune, python3, rsync, buck, watchman, sqlite }:
2018-07-10 23:20:17 +00:00
let
# Manually set version - the setup script requires
# hg and git + keeping the .git directory around.
2019-03-31 14:22:43 +00:00
pyre-version = "0.0.22"; # also change typeshed revision below with $pyre-src/.typeshed-version
2018-11-02 11:42:05 +00:00
pyre-src = fetchFromGitHub {
owner = "facebook";
repo = "pyre-check";
rev = "v${pyre-version}";
2019-03-31 14:22:43 +00:00
sha256 = "057vy6zmgwsi0ag9n4m6sszhahmfk2s1ywm36nyfs7w4d0wnk92s";
2018-11-02 11:42:05 +00:00
};
2018-07-10 23:20:17 +00:00
versionFile = writeScript "version.ml" ''
cat > "./version.ml" <<EOF
2018-09-08 20:12:44 +00:00
open Core
2018-07-10 23:20:17 +00:00
let build_info () =
2018-09-08 20:12:44 +00:00
"pyre-nixpkgs ${pyre-version}"
2018-07-10 23:20:17 +00:00
let version () =
2018-09-08 20:12:44 +00:00
"${pyre-version}"
let log_version_banner () =
Log.info "Running as pid: %d" (Pid.to_int (Unix.getpid ()));
Log.info "Version: %s" (version ());
2018-12-03 01:26:22 +00:00
Log.info "Build info: %s" (build_info ())
2018-07-10 23:20:17 +00:00
EOF
'';
2018-09-08 20:12:44 +00:00
pyre-bin = stdenv.mkDerivation {
name = "pyre-${pyre-version}";
2018-07-10 23:20:17 +00:00
2018-11-02 11:42:05 +00:00
src = pyre-src;
2018-07-10 23:20:17 +00:00
buildInputs = with ocamlPackages; [
ocaml
findlib
menhir
yojson
core
sedlex
ppx_deriving_yojson
ocamlbuild
ppxlib
2018-09-05 16:11:47 +00:00
dune
2018-09-08 20:12:44 +00:00
ounit
2019-03-31 14:22:43 +00:00
base64
sqlite.dev
# python36Packages.python36Full # TODO
2018-07-10 23:20:17 +00:00
];
2018-12-03 08:19:28 +00:00
preBuild = ''
2018-07-10 23:20:17 +00:00
# build requires HOME to be set
2018-12-03 08:19:28 +00:00
export HOME=$TMPDIR
2018-07-10 23:20:17 +00:00
# "external" because https://github.com/facebook/pyre-check/pull/8/files
2018-09-08 20:12:44 +00:00
sed "s/%VERSION%/external/" dune.in > dune
2018-07-10 23:20:17 +00:00
2018-12-03 08:19:28 +00:00
ln -sf ${versionFile} ./scripts/generate-version-number.sh
2018-07-10 23:20:17 +00:00
mkdir $(pwd)/build
export OCAMLFIND_DESTDIR=$(pwd)/build
export OCAMLPATH=$OCAMLPATH:$(pwd)/build
'';
2018-12-03 08:19:28 +00:00
buildFlags = [ "release" ];
doCheck = true;
# ./scripts/run-python-tests.sh # TODO: once typeshed and python bits are added
2018-07-10 23:20:17 +00:00
# Note that we're not installing the typeshed yet.
# Improvement for a future version.
installPhase = ''
2018-12-03 08:19:28 +00:00
install -D ./_build/default/main.exe $out/bin/pyre.bin
2018-07-10 23:20:17 +00:00
'';
meta = with stdenv.lib; {
description = "A performant type-checker for Python 3";
homepage = https://pyre-check.org;
license = licenses.mit;
2018-11-02 03:29:18 +00:00
platforms = ocamlPackages.ocaml.meta.platforms;
2018-07-10 23:20:17 +00:00
maintainers = with maintainers; [ teh ];
};
2018-09-08 20:12:44 +00:00
};
typeshed = stdenv.mkDerivation {
pname = "typeshed";
2018-09-08 20:12:44 +00:00
version = pyre-version;
src = fetchFromGitHub {
owner = "python";
repo = "typeshed";
2019-01-31 15:36:36 +00:00
rev = "0b49ce75b478fdf283dda5dd1368759ac342dfe2";
sha256 = "1w5aqbbcfk5ki8n9fgdikkyadjb318ipqyi517s9xnwlzi1jv0fh";
2018-09-08 20:12:44 +00:00
};
phases = [ "unpackPhase" "installPhase" ];
installPhase = "cp -r $src $out";
};
2019-08-13 21:52:01 +00:00
in python3.pkgs.buildPythonApplication {
2018-09-08 20:12:44 +00:00
pname = "pyre-check";
version = pyre-version;
2018-11-02 11:42:05 +00:00
src = pyre-src;
patches = [ ./pyre-bdist-wheel.patch ];
2018-09-08 20:12:44 +00:00
# The build-pypi-package script does some funky stuff with build
# directories - easier to patch it a bit than to replace it
# completely though:
postPatch = ''
mkdir ./build
substituteInPlace scripts/build-pypi-package.sh \
--replace 'NIX_BINARY_FILE' '${pyre-bin}/bin/pyre.bin' \
2018-11-02 11:42:05 +00:00
--replace 'BUILD_ROOT="$(mktemp -d)"' "BUILD_ROOT=$PWD/build"
2018-12-21 13:22:08 +00:00
for file in client/pyre.py client/commands/initialize.py client/commands/tests/initialize_test.py; do
substituteInPlace "$file" \
--replace '"watchman"' '"${watchman}/bin/watchman"'
done
2018-11-02 03:31:11 +00:00
substituteInPlace client/buck.py \
--replace '"buck"' '"${buck}/bin/buck"'
substituteInPlace client/tests/buck_test.py \
--replace '"buck"' '"${buck}/bin/buck"'
2018-09-08 20:12:44 +00:00
'';
2018-11-02 11:42:05 +00:00
buildInputs = [ pyre-bin ];
nativeBuildInputs = [ rsync ]; # only required for build-pypi-package.sh
2019-03-31 14:22:43 +00:00
propagatedBuildInputs = with python3.pkgs; [
docutils
typeshed
click-log
ipython
sqlalchemy
munch
xxhash
ujson
];
2018-09-08 20:12:44 +00:00
buildPhase = ''
bash scripts/build-pypi-package.sh --version ${pyre-version} --bundle-typeshed ${typeshed}
cp -r build/dist dist
'';
2018-11-02 03:31:11 +00:00
checkPhase = ''
bash scripts/run-python-tests.sh
'';
2018-07-10 23:20:17 +00:00
}