504525a148
GitOrigin-RevId: bd645e8668ec6612439a9ee7e71f7eac4099d4f6
31 lines
639 B
Nix
31 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;
|
|
};
|
|
|
|
}
|