python3Packages.dnachisel: init at 3.2.5
This commit is contained in:
parent
aa30970bc9
commit
c6db0dab11
2 changed files with 43 additions and 0 deletions
41
pkgs/development/python-modules/dnachisel/default.nix
Normal file
41
pkgs/development/python-modules/dnachisel/default.nix
Normal file
|
@ -0,0 +1,41 @@
|
|||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, biopython
|
||||
, docopt
|
||||
, flametree
|
||||
, numpy
|
||||
, proglog
|
||||
, python-codon-tables
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "dnachisel";
|
||||
version = "3.2.5";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "35301c5eda0baca5902403504e0b5a22eb65da92c2bbd23199d95c4a6bf0ef37";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [
|
||||
biopython
|
||||
docopt
|
||||
flametree
|
||||
numpy
|
||||
proglog
|
||||
python-codon-tables
|
||||
];
|
||||
|
||||
# no tests in tarball
|
||||
doCheck = false;
|
||||
|
||||
pythonImportsCheck = [ "dnachisel" ];
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "https://github.com/Edinburgh-Genome-Foundry/DnaChisel";
|
||||
description = "Optimize DNA sequences under constraints";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ prusnak ];
|
||||
};
|
||||
}
|
|
@ -1793,6 +1793,8 @@ in {
|
|||
|
||||
dm-sonnet = callPackage ../development/python-modules/dm-sonnet { };
|
||||
|
||||
dnachisel = callPackage ../development/python-modules/dnachisel { };
|
||||
|
||||
dnslib = callPackage ../development/python-modules/dnslib { };
|
||||
|
||||
dnspython = if isPy3k then
|
||||
|
|
Loading…
Reference in a new issue