nixpkgs/pkgs/development/python-modules/pysendfile/default.nix
adisbladis 02dab4ab5c python3.pkgs.*: Explicitly pass buildPythonPackage format parameter
Long term we should move everything over to `pyproject = true`, but in
the mean time we can work towards deprecating the implicit `format` paremeter.

cc https://github.com/NixOS/nixpkgs/issues/253154
cc @mweinelt @figsoda
2023-12-07 17:46:49 +01:00

32 lines
639 B
Nix

{ stdenv
, lib
, buildPythonPackage
, fetchPypi
, python
}:
buildPythonPackage rec {
pname = "pysendfile";
version = "2.0.1";
format = "setuptools";
src = fetchPypi {
inherit pname version;
sha256 = "05qf0m32isflln1zjgxlpw0wf469lj86vdwwqyizp1h94x5l22ji";
};
checkPhase = ''
# this test takes too long
sed -i 's/test_big_file/noop/' test/test_sendfile.py
${python.executable} test/test_sendfile.py
'';
meta = with lib; {
broken = stdenv.isDarwin;
homepage = "https://github.com/giampaolo/pysendfile";
description = "A Python interface to sendfile(2)";
license = licenses.mit;
};
}