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: 4b011ce9eec8
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 877897d0a8ed
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Apr 10, 2020

  1. python27Packages.fire: 0.3.0 -> 0.3.1

    r-ryantm authored and Jon committed Apr 10, 2020

    Verified

    This commit was signed with the committer’s verified signature. The key has expired.
    CRBroughton Craig R Broughton
    Copy the full SHA
    d1d7f86 View commit details
  2. python38Packages.fire: disable fragile test

    Jonathan Ringer committed Apr 10, 2020
    Copy the full SHA
    877897d View commit details
Showing with 5 additions and 3 deletions.
  1. +5 −3 pkgs/development/python-modules/fire/default.nix
8 changes: 5 additions & 3 deletions pkgs/development/python-modules/fire/default.nix
Original file line number Diff line number Diff line change
@@ -3,21 +3,23 @@

buildPythonPackage rec {
pname = "fire";
version = "0.3.0";
version = "0.3.1";

src = fetchFromGitHub {
owner = "google";
repo = "python-fire";
rev = "v${version}";
sha256 = "1jwf1qv9xmr1c8nyvwqn02329vzyh9py4slx13n55ms8h1n998nr";
sha256 = "0s5r6l39ck2scks54hmwwdf4lcihqqnqzjfx9lz2b67vxkajpwmc";
};

propagatedBuildInputs = [ six termcolor ] ++ stdenv.lib.optional isPy27 enum34;

checkInputs = [ hypothesis mock python-Levenshtein pytest ];

# ignore test which asserts exact usage statement, default behavior
# changed in python3.8. This can likely be remove >=0.3.1
checkPhase = ''
py.test
py.test -k 'not testInitRequiresFlag'
'';

meta = with stdenv.lib; {