depot/third_party/nixpkgs/pkgs/development/python-modules/pysendfile/default.nix
Default email 8ac5e011d6 Project import generated by Copybara.
GitOrigin-RevId: 2c3273caa153ee8eb5786bc8141b85b859e7efd7
2020-04-24 19:36:52 -04:00

28 lines
585 B
Nix

{ stdenv
, buildPythonPackage
, fetchPypi
, python
}:
buildPythonPackage rec {
pname = "pysendfile";
version = "2.0.1";
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 stdenv.lib; {
homepage = "https://github.com/giampaolo/pysendfile";
description = "A Python interface to sendfile(2)";
license = licenses.mit;
};
}