3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/applications/science/math/bcal/default.nix

36 lines
813 B
Nix
Raw Normal View History

2021-01-15 13:21:58 +00:00
{ lib, stdenv, fetchFromGitHub, python3Packages, readline, bc }:
2018-02-20 18:29:04 +00:00
2021-01-15 13:21:58 +00:00
with lib;
2018-02-20 18:29:04 +00:00
stdenv.mkDerivation rec {
pname = "bcal";
2020-12-27 15:49:53 +00:00
version = "2.2";
2018-02-20 18:29:04 +00:00
src = fetchFromGitHub {
owner = "jarun";
repo = "bcal";
rev = "v${version}";
2020-12-27 15:49:53 +00:00
sha256 = "4vR5rcbNkoEdSRNoMH9qMHP3iWFxejkVfXNiYfwbo/A=";
2018-02-20 18:29:04 +00:00
};
nativeBuildInputs = [ python3Packages.pytest ];
2018-08-03 08:08:26 +01:00
buildInputs = [ readline ];
doCheck = true;
2020-12-27 15:49:53 +00:00
checkInputs = [ bc ];
2018-02-20 18:29:04 +00:00
checkPhase = ''
python3 -m pytest test.py
'';
installFlags = [ "DESTDIR=$(out)" "PREFIX=" ];
meta = {
description = "Storage conversion and expression calculator";
homepage = "https://github.com/jarun/bcal";
2020-12-27 15:49:53 +00:00
license = licenses.gpl3Only;
platforms = [ "aarch64-linux" "x86_64-darwin" "x86_64-linux" ];
2018-02-20 18:29:04 +00:00
maintainers = with maintainers; [ jfrankenau ];
};
}