python3Packages.synergy: init at 0.5.1
This commit is contained in:
parent
1b9783191b
commit
4ebfdf3b88
2 changed files with 45 additions and 0 deletions
43
pkgs/development/python-modules/synergy/default.nix
Normal file
43
pkgs/development/python-modules/synergy/default.nix
Normal 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;
|
||||
};
|
||||
}
|
|
@ -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 { };
|
||||
|
|
Loading…
Reference in a new issue