Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / reflink / default.nix
blobab7504cf2f312e31a6b405f06fd5851ca55092f1
1 { buildPythonPackage
2 , cffi
3 , fetchPypi
4 , lib
5 , pytestCheckHook
6 }:
8 buildPythonPackage rec {
9   pname = "reflink";
10   version = "0.2.2";
11   format = "setuptools";
13   src = fetchPypi {
14     inherit pname version;
15     hash = "sha256-iCN17nMZJ1rl9qahKHQGNl2sHpZDuRrRDlGH0/hCU70=";
16   };
18   propagatedBuildInputs = [ cffi ];
20   propagatedNativeBuildInputs = [ cffi ];
22   nativeCheckInputs = [ pytestCheckHook ];
24   postPatch = ''
25     substituteInPlace setup.py \
26       --replace "pytest-runner" ""
27   '';
29   # FIXME: These do not work, and I have been unable to figure out why.
30   doCheck = false;
32   pythonImportsCheck = [ "reflink" ];
34   meta = with lib; {
35     description = "Python reflink wraps around platform specific reflink implementations";
36     homepage = "https://gitlab.com/rubdos/pyreflink";
37     license = licenses.mit;
38     maintainers = with maintainers; [ lovesegfault ];
39   };