summaryrefslogtreecommitdiffstats
path: root/pkgs/applications/science
diff options
context:
space:
mode:
authorfreezeboy <freezeboy@users.noreply.github.com>2020-12-27 16:49:53 +0100
committerfreezeboy <freezeboy@users.noreply.github.com>2020-12-27 17:52:28 +0100
commit3c89e637e8fe5ea3d386fbd9025431c43e5aaa27 (patch)
treee8804dd677f3cb2a9ce261282c4ef95f24e54fc8 /pkgs/applications/science
parent4c59687c01f2c7bcb27fcb2c0da8d482208fb4be (diff)
bcal: 1.9 -> 2.2
Diffstat (limited to 'pkgs/applications/science')
-rw-r--r--pkgs/applications/science/math/bcal/default.nix9
1 files changed, 5 insertions, 4 deletions
diff --git a/pkgs/applications/science/math/bcal/default.nix b/pkgs/applications/science/math/bcal/default.nix
index 18b6e051b3f2..5df2d20549c2 100644
--- a/pkgs/applications/science/math/bcal/default.nix
+++ b/pkgs/applications/science/math/bcal/default.nix
@@ -1,16 +1,16 @@
-{ stdenv, fetchFromGitHub, python3Packages, readline }:
+{ stdenv, fetchFromGitHub, python3Packages, readline, bc }:
with stdenv.lib;
stdenv.mkDerivation rec {
pname = "bcal";
- version = "1.9";
+ version = "2.2";
src = fetchFromGitHub {
owner = "jarun";
repo = "bcal";
rev = "v${version}";
- sha256 = "0h6qi5rvzl6c6fsfdpdb3l4jcgip03l18i0b1x08z1y89i56y8mm";
+ sha256 = "4vR5rcbNkoEdSRNoMH9qMHP3iWFxejkVfXNiYfwbo/A=";
};
nativeBuildInputs = [ python3Packages.pytest ];
@@ -18,6 +18,7 @@ stdenv.mkDerivation rec {
buildInputs = [ readline ];
doCheck = true;
+ checkInputs = [ bc ];
checkPhase = ''
python3 -m pytest test.py
'';
@@ -27,7 +28,7 @@ stdenv.mkDerivation rec {
meta = {
description = "Storage conversion and expression calculator";
homepage = "https://github.com/jarun/bcal";
- license = licenses.gpl3;
+ license = licenses.gpl3Only;
platforms = [ "aarch64-linux" "x86_64-darwin" "x86_64-linux" ];
maintainers = with maintainers; [ jfrankenau ];
};