summary refs log tree commit diff
path: root/pkgs/development/python-modules/pysendfile/default.nix
blob: d2a73bb728207ee2920b952afb5dccdff62d466d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
{ stdenv
, lib
, 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 lib; {
    broken = stdenv.isDarwin;
    homepage = "https://github.com/giampaolo/pysendfile";
    description = "A Python interface to sendfile(2)";
    license = licenses.mit;
  };

}