about summary refs log tree commit diff
path: root/pkgs/development/python-modules/forbiddenfruit/default.nix
blob: 48f68c49cf6222a388216c4fe40773238a4ef3dd (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
31
32
33
34
35
36
37
{
  lib,
  buildPythonPackage,
  fetchFromGitHub,
  nose,
}:

buildPythonPackage rec {
  version = "0.1.4";
  format = "setuptools";
  pname = "forbiddenfruit";

  src = fetchFromGitHub {
    owner = "clarete";
    repo = "forbiddenfruit";
    rev = version;
    sha256 = "16chhrxbbmg6lfbzm532fq0v00z8qihcsj0kg2b5jlgnb6qijwn8";
  };

  nativeCheckInputs = [ nose ];

  preBuild = ''
    export FFRUIT_EXTENSION="true";
  '';

  # https://github.com/clarete/forbiddenfruit/pull/47 required to switch to pytest
  checkPhase = ''
    find ./build -name '*.so' -exec mv {} tests/unit \;
    nosetests
  '';

  meta = with lib; {
    description = "Patch python built-in objects";
    homepage = "https://github.com/clarete/forbiddenfruit";
    license = licenses.mit;
  };
}