Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: bdf070fe2a8e
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: daaf50fbdf9a
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Apr 23, 2019

  1. Verified

    This commit was signed with the committer’s verified signature.
    SamirHafez Samir Hafez
    Copy the full SHA
    daaf50f View commit details
Showing with 3 additions and 5 deletions.
  1. +3 −5 pkgs/development/python-modules/forbiddenfruit/default.nix
8 changes: 3 additions & 5 deletions pkgs/development/python-modules/forbiddenfruit/default.nix
Original file line number Diff line number Diff line change
@@ -5,23 +5,21 @@
}:

buildPythonPackage rec {
version = "0.1.2";
version = "0.1.3";
pname = "forbiddenfruit";

src = fetchPypi {
inherit pname version;
sha256 = "09ee1959fa34936c15417defa28bfd09cf88ad54c15454bc863d465ed42b8922";
sha256 = "1188a07cc24a9bd2c529dad06490b80a6fc88cde968af4d7861da81686b2cc8c";
};

checkInputs = [ nose ];

checkPhase = ''
find ./build -name '*.so' -exec mv {} tests/unit \;
nosetests
'';

# tests directory missing in PyPI tarball
doCheck = false;

meta = with stdenv.lib; {
description = "Patch python built-in objects";
homepage = https://pypi.python.org/pypi/forbiddenfruit;