blob: 48cbf42a2f3d677d0ed229a0d448c4a8ecf2cc21 (
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
|
{
buildPythonPackage,
cffi,
fetchPypi,
lib,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "reflink";
version = "0.2.2";
format = "setuptools";
src = fetchPypi {
inherit pname version;
hash = "sha256-iCN17nMZJ1rl9qahKHQGNl2sHpZDuRrRDlGH0/hCU70=";
};
propagatedBuildInputs = [ cffi ];
propagatedNativeBuildInputs = [ cffi ];
nativeCheckInputs = [ pytestCheckHook ];
postPatch = ''
substituteInPlace setup.py \
--replace "pytest-runner" ""
'';
# FIXME: These do not work, and I have been unable to figure out why.
doCheck = false;
pythonImportsCheck = [ "reflink" ];
meta = {
description = "Python reflink wraps around platform specific reflink implementations";
homepage = "https://gitlab.com/rubdos/pyreflink";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ lovesegfault ];
};
}
|