python3Packages.synergy: init at 0.5.1

This commit is contained in:
IvarWithoutBones 2021-07-22 22:22:30 +02:00
parent 1b9783191b
commit 4ebfdf3b88
2 changed files with 45 additions and 0 deletions

View file

@ -0,0 +1,43 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, pytestCheckHook
, pythonOlder
, numpy
, scipy
, matplotlib
, plotly
, pandas
}:
buildPythonPackage rec {
pname = "synergy";
version = "0.5.1";
disabled = pythonOlder "3.5";
# Pypi does not contain unit tests
src = fetchFromGitHub {
owner = "djwooten";
repo = "synergy";
rev = "v${version}";
sha256 = "1c60dpvr72g4wjqg6bc601kssl5z55v9bg09xbyh9ahch58bi212";
};
propagatedBuildInputs = [
numpy
scipy
matplotlib
plotly
pandas
];
checkInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "synergy" ];
meta = with lib; {
description = "A Python library for calculating, analyzing, and visualizing drug combination synergy";
homepage = "https://github.com/djwooten/synergy";
maintainers = [ maintainers.ivar ];
license = licenses.gpl3Plus;
};
}

View file

@ -8436,6 +8436,8 @@ in {
syncer = callPackage ../development/python-modules/syncer { };
synergy = callPackage ../development/python-modules/synergy { };
synologydsm-api = callPackage ../development/python-modules/synologydsm-api { };
systembridge = callPackage ../development/python-modules/systembridge { };