summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/marisa-trie/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/python-modules/marisa-trie/default.nix')
-rw-r--r--pkgs/development/python-modules/marisa-trie/default.nix27
1 files changed, 12 insertions, 15 deletions
diff --git a/pkgs/development/python-modules/marisa-trie/default.nix b/pkgs/development/python-modules/marisa-trie/default.nix
index 544e2196326f..b9ce61973394 100644
--- a/pkgs/development/python-modules/marisa-trie/default.nix
+++ b/pkgs/development/python-modules/marisa-trie/default.nix
@@ -1,11 +1,12 @@
-{ lib
-, buildPythonPackage
-, fetchPypi
-, cython
-, pytestCheckHook
-, hypothesis
-, readme-renderer
-, pythonOlder
+{
+ lib,
+ buildPythonPackage,
+ fetchPypi,
+ cython,
+ pytestCheckHook,
+ hypothesis,
+ readme-renderer,
+ pythonOlder,
}:
buildPythonPackage rec {
@@ -20,9 +21,7 @@ buildPythonPackage rec {
hash = "sha256-W/Q+0M82r0V4/nsDTPlfUyQ5dmUWaA5L1gNyNhHr1Ws=";
};
- nativeBuildInputs = [
- cython
- ];
+ nativeBuildInputs = [ cython ];
nativeCheckInputs = [
pytestCheckHook
@@ -53,9 +52,7 @@ buildPythonPackage rec {
"test_mmap"
];
- pythonImportsCheck = [
- "marisa_trie"
- ];
+ pythonImportsCheck = [ "marisa_trie" ];
meta = with lib; {
description = "Static memory-efficient Trie-like structures for Python based on marisa-trie C++ library";
@@ -63,7 +60,7 @@ buildPythonPackage rec {
There are official SWIG-based Python bindings included in C++ library distribution.
This package provides alternative Cython-based pip-installable Python bindings.
'';
- homepage = "https://github.com/kmike/marisa-trie";
+ homepage = "https://github.com/kmike/marisa-trie";
changelog = "https://github.com/pytries/marisa-trie/blob/${version}/CHANGES.rst";
license = licenses.mit;
};