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

Commits on Apr 2, 2019

  1. python37Packages.shouldbe: 0.1.0 -> 0.1.2

    Semi-automatic update generated by
    https://github.com/ryantm/nixpkgs-update tools. This update was made
    based on information from
    https://repology.org/metapackage/python3.7-shouldbe/versions
    r-ryantm committed Apr 2, 2019

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    daa854d View commit details

Commits on Apr 5, 2019

  1. python.pkgs.shouldbe: run tests

    Robert Schütz committed Apr 5, 2019

    Verified

    This commit was signed with the committer’s verified signature. The key has expired.
    frenck Franck Nijhof
    Copy the full SHA
    32e3de3 View commit details
  2. Merge pull request #58842 from r-ryantm/auto-update/python3.7-shouldbe

    python37Packages.shouldbe: 0.1.0 -> 0.1.2
    dotlambda authored Apr 5, 2019

    Verified

    This commit was signed with the committer’s verified signature. The key has expired.
    frenck Franck Nijhof
    Copy the full SHA
    65a3955 View commit details
Showing with 3 additions and 5 deletions.
  1. +3 −5 pkgs/development/python-modules/shouldbe/default.nix
8 changes: 3 additions & 5 deletions pkgs/development/python-modules/shouldbe/default.nix
Original file line number Diff line number Diff line change
@@ -6,19 +6,17 @@
}:

buildPythonPackage rec {
version = "0.1.0";
version = "0.1.2";
pname = "shouldbe";

src = fetchPypi {
inherit pname version;
sha256 = "07pchxpv1xvjbck0xy44k3a1jrvklg0wbyccn14w0i7d135d4174";
sha256 = "16zbvjxf71dl4yfbgcr6idyim3mdrfvix1dv8b95p0s9z07372pj";
};

buildInputs = [ nose ];
checkInputs = [ nose ];
propagatedBuildInputs = [ forbiddenfruit ];

doCheck = false; # Segmentation fault on py 3.5

meta = with stdenv.lib; {
description = "Python Assertion Helpers inspired by Shouldly";
homepage = https://pypi.python.org/pypi/shouldbe/;