biome: 1.9.2 -> 1.9.3 (#349335)
[NixPkgs.git] / pkgs / development / python-modules / reflink / default.nix
blobfeb533ee69f002a21f60d0506f68e4b4619f38a7
2   buildPythonPackage,
3   cffi,
4   fetchPypi,
5   lib,
6   pytestCheckHook,
7 }:
9 buildPythonPackage rec {
10   pname = "reflink";
11   version = "0.2.2";
12   format = "setuptools";
14   src = fetchPypi {
15     inherit pname version;
16     hash = "sha256-iCN17nMZJ1rl9qahKHQGNl2sHpZDuRrRDlGH0/hCU70=";
17   };
19   propagatedBuildInputs = [ cffi ];
21   propagatedNativeBuildInputs = [ cffi ];
23   nativeCheckInputs = [ pytestCheckHook ];
25   postPatch = ''
26     substituteInPlace setup.py \
27       --replace "pytest-runner" ""
28   '';
30   # FIXME: These do not work, and I have been unable to figure out why.
31   doCheck = false;
33   pythonImportsCheck = [ "reflink" ];
35   meta = with lib; {
36     description = "Python reflink wraps around platform specific reflink implementations";
37     homepage = "https://gitlab.com/rubdos/pyreflink";
38     license = licenses.mit;
39     maintainers = with maintainers; [ lovesegfault ];
40   };