summary refs log tree commit diff
path: root/pkgs/development/python-modules/lazy-object-proxy/default.nix
blob: f72e71fd4bd6a02db5fcc598bc96092ab360f765 (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
, buildPythonPackage
, fetchPypi
, pytest
}:

buildPythonPackage rec {
  pname = "lazy-object-proxy";
  version = "1.2.1";

  src = fetchPypi {
    inherit pname version;
    sha256 = "22ed751a2c63c6cf718674fd7461b1dfc45215bab4751ca32b6c9b8cb2734cb3";
  };

  buildInputs = [ pytest ];
  checkPhase = ''
    py.test tests
  '';

  # Broken tests. Seem to be fixed upstream according to Travis.
  doCheck = false;

  meta = with stdenv.lib; {
    description = "A fast and thorough lazy object proxy";
    homepage = https://github.com/ionelmc/python-lazy-object-proxy;
    license = with licenses; [ bsd2 ];
  };

}