uboot: (firmwareOdroidC2/C4) don't invoke patch tool, use patches = [] instead
https://github.com/NixOS/nixpkgs/blob/master/pkgs/stdenv/generic/setup.sh#L948 this can do it nicely. Signed-off-by: Anton Arapov <anton@deadbeef.mx>
This commit is contained in:
commit
56de2bcd43
30691 changed files with 3076956 additions and 0 deletions
76
pkgs/development/python-modules/rapidfuzz/default.nix
Normal file
76
pkgs/development/python-modules/rapidfuzz/default.nix
Normal file
|
|
@ -0,0 +1,76 @@
|
|||
{ lib
|
||||
, buildPythonPackage
|
||||
, pythonOlder
|
||||
, fetchFromGitHub
|
||||
, cmake
|
||||
, cython_3
|
||||
, rapidfuzz-capi
|
||||
, scikit-build
|
||||
, jarowinkler
|
||||
, numpy
|
||||
, hypothesis
|
||||
, jarowinkler-cpp
|
||||
, pandas
|
||||
, pytestCheckHook
|
||||
, rapidfuzz-cpp
|
||||
, taskflow
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "rapidfuzz";
|
||||
version = "2.0.11";
|
||||
|
||||
disabled = pythonOlder "3.6";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "maxbachmann";
|
||||
repo = "RapidFuzz";
|
||||
rev = "v${version}";
|
||||
hash = "sha256-npmdnUMrmbHgUgqMxKBytgtL1weWw6BjVNmBkYSKNMw=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [
|
||||
cmake
|
||||
cython_3
|
||||
rapidfuzz-capi
|
||||
scikit-build
|
||||
];
|
||||
|
||||
dontUseCmakeConfigure = true;
|
||||
|
||||
buildInputs = [
|
||||
jarowinkler-cpp
|
||||
rapidfuzz-cpp
|
||||
taskflow
|
||||
];
|
||||
|
||||
propagatedBuildInputs = [
|
||||
jarowinkler
|
||||
numpy
|
||||
];
|
||||
|
||||
checkInputs = [
|
||||
hypothesis
|
||||
pandas
|
||||
pytestCheckHook
|
||||
];
|
||||
|
||||
preCheck = ''
|
||||
# import from $out
|
||||
rm -r rapidfuzz
|
||||
'';
|
||||
|
||||
pythonImportsCheck = [
|
||||
"rapidfuzz.fuzz"
|
||||
"rapidfuzz.string_metric"
|
||||
"rapidfuzz.process"
|
||||
"rapidfuzz.utils"
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Rapid fuzzy string matching";
|
||||
homepage = "https://github.com/maxbachmann/RapidFuzz";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ dotlambda ];
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue