mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-26 07:34:11 +00:00
d87419737d
Diff: https://github.com/Instagram/LibCST/compare/refs/tags/v1.5.0...v1.5.1 Changelog: https://github.com/Instagram/LibCST/blob/v1.5.1/CHANGELOG.md
105 lines
2.0 KiB
Nix
105 lines
2.0 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
callPackage,
|
|
cargo,
|
|
hypothesmith,
|
|
libcst,
|
|
libiconv,
|
|
pytestCheckHook,
|
|
python,
|
|
pythonOlder,
|
|
pyyaml,
|
|
rustPlatform,
|
|
rustc,
|
|
setuptools-rust,
|
|
setuptools-scm,
|
|
typing-extensions,
|
|
typing-inspect,
|
|
ufmt,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "libcst";
|
|
version = "1.5.1";
|
|
pyproject = true;
|
|
|
|
disabled = pythonOlder "3.9";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "Instagram";
|
|
repo = "LibCST";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-fveY4ah94pv9ImI36MNrrxTpZv/DtLb45pXm67L8/GA=";
|
|
};
|
|
|
|
cargoDeps = rustPlatform.fetchCargoTarball {
|
|
inherit src;
|
|
sourceRoot = "${src.name}/${cargoRoot}";
|
|
name = "${pname}-${version}";
|
|
hash = "sha256-TcWGW1RF2se89BtvQHO+4BwnRMZ8ygqO3du9Q/gZi/Q=";
|
|
};
|
|
|
|
cargoRoot = "native";
|
|
|
|
build-system = [
|
|
setuptools-rust
|
|
setuptools-scm
|
|
];
|
|
|
|
nativeBuildInputs = [
|
|
rustPlatform.cargoSetupHook
|
|
cargo
|
|
rustc
|
|
];
|
|
|
|
buildInputs = lib.optionals stdenv.hostPlatform.isDarwin [ libiconv ];
|
|
|
|
dependencies = [
|
|
typing-extensions
|
|
typing-inspect
|
|
pyyaml
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
hypothesmith
|
|
pytestCheckHook
|
|
ufmt
|
|
];
|
|
|
|
preCheck = ''
|
|
# import from $out instead
|
|
rm libcst/__init__.py
|
|
'';
|
|
|
|
disabledTests = [
|
|
# FIXME package pyre-test
|
|
"TypeInferenceProviderTest"
|
|
# we'd need to run `python -m libcst.codegen.generate all` but shouldn't modify $out
|
|
"test_codegen_clean_visitor_functions"
|
|
];
|
|
|
|
# circular dependency on hypothesmith and ufmt
|
|
doCheck = false;
|
|
|
|
passthru.tests = {
|
|
pytest = libcst.overridePythonAttrs { doCheck = true; };
|
|
};
|
|
|
|
pythonImportsCheck = [ "libcst" ];
|
|
|
|
meta = {
|
|
description = "Concrete Syntax Tree (CST) parser and serializer library for Python";
|
|
homepage = "https://github.com/Instagram/LibCST";
|
|
changelog = "https://github.com/Instagram/LibCST/blob/v${version}/CHANGELOG.md";
|
|
license = with lib.licenses; [
|
|
mit
|
|
asl20
|
|
psfl
|
|
];
|
|
maintainers = with lib.maintainers; [ dotlambda ];
|
|
};
|
|
}
|