about summary refs log tree commit diff
path: root/pkgs/development/python-modules/graspologic-native/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/python-modules/graspologic-native/default.nix')
-rw-r--r--pkgs/development/python-modules/graspologic-native/default.nix50
1 files changed, 50 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/graspologic-native/default.nix b/pkgs/development/python-modules/graspologic-native/default.nix
new file mode 100644
index 0000000000000..3f014562f40ab
--- /dev/null
+++ b/pkgs/development/python-modules/graspologic-native/default.nix
@@ -0,0 +1,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 ];
+  };
+}