summaryrefslogtreecommitdiffstats
path: root/pkgs
diff options
context:
space:
mode:
authorFabian Affolter <mail@fabian-affolter.ch>2023-06-11 15:06:46 +0200
committerGitHub <noreply@github.com>2023-06-11 15:06:46 +0200
commite85f0c7cf6f7319a91674f11fccbbc9a8d5ca30f (patch)
tree4a8a577a0d442cca91137a056621ebe9fe2f54c8 /pkgs
parentf09bde4cd04ea035b199537b28ccc72985693cde (diff)
python310Packages.dnachisel: add format
- disable on unsupported Python releases
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/python-modules/dnachisel/default.nix4
1 files changed, 4 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/dnachisel/default.nix b/pkgs/development/python-modules/dnachisel/default.nix
index 697051337b84..5a70ae1c16df 100644
--- a/pkgs/development/python-modules/dnachisel/default.nix
+++ b/pkgs/development/python-modules/dnachisel/default.nix
@@ -7,6 +7,7 @@
, numpy
, proglog
, pytestCheckHook
+, pythonOlder
, python-codon-tables
, primer3
, genome-collector
@@ -16,6 +17,9 @@
buildPythonPackage rec {
pname = "dnachisel";
version = "3.2.11";
+ format = "setuptools";
+
+ disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "Edinburgh-Genome-Foundry";