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

Commits on Aug 3, 2018

  1. bcal: 1.8 -> 1.9

    jfrankenau committed Aug 3, 2018
    Copy the full SHA
    79cd841 View commit details
  2. Merge pull request #44387 from jfrankenau/update-bcal

    bcal: 1.8 -> 1.9
    Mic92 authored Aug 3, 2018

    Verified

    This commit was signed with the committer’s verified signature.
    jeevatkm Jeevanandam M.
    Copy the full SHA
    29387fb View commit details
Showing with 5 additions and 3 deletions.
  1. +5 −3 pkgs/applications/science/math/bcal/default.nix
8 changes: 5 additions & 3 deletions pkgs/applications/science/math/bcal/default.nix
Original file line number Diff line number Diff line change
@@ -1,20 +1,22 @@
{ stdenv, fetchFromGitHub, python3Packages }:
{ stdenv, fetchFromGitHub, python3Packages, readline }:

with stdenv.lib;

stdenv.mkDerivation rec {
name = "bcal-${version}";
version = "1.8";
version = "1.9";

src = fetchFromGitHub {
owner = "jarun";
repo = "bcal";
rev = "v${version}";
sha256 = "0jdn46wzwq7yn3x6p1xyqarp52pcr0ghnfhkm7nyxv734g1abw7r";
sha256 = "0h6qi5rvzl6c6fsfdpdb3l4jcgip03l18i0b1x08z1y89i56y8mm";
};

nativeBuildInputs = [ python3Packages.pytest ];

buildInputs = [ readline ];

doCheck = true;
checkPhase = ''
python3 -m pytest test.py