about summary refs log tree commit diff
path: root/pkgs/development/python-modules/graspologic-native/default.nix
blob: 3f014562f40abbbb59a03c0161b23c0e93106853 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
{
  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";
    rev = "refs/tags/${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 = with lib; {
    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 = licenses.mit;
    maintainers = with maintainers; [ natsukium ];
  };
}