blob: fca55ff984b5c125cf589e18b7ed9ef5c978fde0 (
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
51
52
53
54
55
56
|
{
lib,
buildPythonPackage,
cargo,
fetchFromGitHub,
libiconv,
poetry-core,
pytestCheckHook,
pythonOlder,
rustc,
rustPlatform,
stdenv,
}:
buildPythonPackage rec {
pname = "pyheck";
version = "0.1.5";
format = "pyproject";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "kevinheavey";
repo = "pyheck";
rev = "refs/tags/${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 = with lib; {
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 = licenses.mit;
maintainers = with maintainers; [ fab ];
};
}
|