mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-28 00:24:18 +00:00
33afbf39f6
checkInputs used to be added to nativeBuildInputs. Now we have nativeCheckInputs to do that instead. Doing this treewide change allows to keep hashes identical to before the introduction of nativeCheckInputs.
40 lines
859 B
Nix
40 lines
859 B
Nix
{ buildPythonPackage
|
|
, cffi
|
|
, fetchPypi
|
|
, lib
|
|
, pytestCheckHook
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "reflink";
|
|
version = "0.2.1";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "sha256-ySU1gtskQTv9cDq/wbKkneePMbSQcjnyhumhkpoebjo=";
|
|
};
|
|
|
|
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 = with lib; {
|
|
description = "Python reflink wraps around platform specific reflink implementations";
|
|
homepage = "https://gitlab.com/rubdos/pyreflink";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ lovesegfault ];
|
|
};
|
|
}
|