Files
nixpkgs/pkgs/development/python-modules/graspologic-native/default.nix
T
Ihar Hrachyshka 567e8dfd8e treewide: clean up 'meta = with' pattern
This commit was created by a combination of scripts and tools:
- an ast-grep script to prefix things in meta with `lib.`,
- a modified nixf-diagnose / nixf combination to remove unused `with
lib;`, and
- regular nixfmt.

Co-authored-by: Wolfgang Walther <walther@technowledgy.de>
2025-12-10 18:09:49 +01:00

51 lines
1.2 KiB
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
rustPlatform,
libiconv,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "graspologic-native";
version = "1.2.1";
pyproject = true;
src = fetchFromGitHub {
owner = "graspologic-org";
repo = "graspologic-native";
tag = version;
hash = "sha256-fgiBUzYBerYX59uj+I0Yret94vA+FpQK+MckskCBqj4=";
};
cargoDeps = rustPlatform.importCargoLock { lockFile = ./Cargo.lock; };
postPatch = ''
ln -s ${./Cargo.lock} Cargo.lock
'';
buildAndTestSubdir = "packages/pyo3";
nativeBuildInputs = [ rustPlatform.cargoSetupHook ];
buildInputs = [ libiconv ];
build-system = [ rustPlatform.maturinBuildHook ];
pythonImportsCheck = [ "graspologic_native" ];
nativeCheckInputs = [ pytestCheckHook ];
preCheck = ''
cd packages/pyo3
'';
meta = {
description = "Library of rust components to add additional capability to graspologic a python library for intelligently building networks and network embeddings, and for analyzing connected data";
homepage = "https://github.com/graspologic-org/graspologic-native";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ natsukium ];
};
}