blob: cb4dd01bfd0ea5806957fee24525b54ab8c34e3f (
plain)
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
51
52
53
|
{
lib,
buildPythonPackage,
cargo,
fetchFromGitHub,
libiconv,
poetry-core,
pytestCheckHook,
rustc,
rustPlatform,
stdenv,
}:
buildPythonPackage rec {
pname = "pyheck";
version = "0.1.5";
pyproject = true;
src = fetchFromGitHub {
owner = "kevinheavey";
repo = "pyheck";
tag = version;
hash = "sha256-mfXkrCbBaJ0da+taKJvfyU5NS43tYJWqtTUXiCLVoGQ=";
};
cargoDeps = rustPlatform.importCargoLock { lockFile = ./Cargo.lock; };
postPatch = ''
ln -s ${./Cargo.lock} Cargo.lock
'';
nativeBuildInputs = [
cargo
poetry-core
rustc
rustPlatform.cargoSetupHook
rustPlatform.maturinBuildHook
];
buildInputs = lib.optionals stdenv.hostPlatform.isDarwin [ libiconv ];
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "pyheck" ];
meta = {
description = "Python bindings for heck, the Rust case conversion library";
homepage = "https://github.com/kevinheavey/pyheck";
changelog = "https://github.com/kevinheavey/pyheck/blob/${version}/CHANGELOG.md";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ fab ];
};
}
|