linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / python-modules / reflink / default.nix
blobe9b8beadd16db64dff93f358bf090c8e592b052a
1 { buildPythonPackage
2 , cffi
3 , fetchPypi
4 , lib
5 , pytestCheckHook
6 , pytestrunner
7 }:
9 buildPythonPackage rec {
10   pname = "reflink";
11   version = "0.2.1";
13   src = fetchPypi {
14     inherit pname version;
15     sha256 = "sha256-ySU1gtskQTv9cDq/wbKkneePMbSQcjnyhumhkpoebjo=";
16   };
18   propagatedBuildInputs = [ cffi pytestrunner ];
20   checkInputs = [ pytestCheckHook ];
22   # FIXME: These do not work, and I have been unable to figure out why.
23   doCheck = false;
25   pythonImportsCheck = [ "reflink" ];
27   meta = with lib; {
28     description = "Python reflink wraps around platform specific reflink implementations";
29     homepage = "https://gitlab.com/rubdos/pyreflink";
30     license = licenses.mit;
31     maintainers = with maintainers; [ lovesegfault ];
32   };