Merge pull request #237192 from r-ryantm/auto-update/python310Packages.dnachisel

python310Packages.dnachisel: 3.2.10 -> 3.2.11

authored by

Pavol Rusnak and committed by
GitHub
3d318cb3 dbab573b

+12 -4
+12 -4
pkgs/development/python-modules/dnachisel/default.nix
··· 7 , numpy 8 , proglog 9 , pytestCheckHook 10 , python-codon-tables 11 , primer3 12 , genome-collector ··· 15 16 buildPythonPackage rec { 17 pname = "dnachisel"; 18 - version = "3.2.10"; 19 20 src = fetchFromGitHub { 21 owner = "Edinburgh-Genome-Foundry"; 22 repo = "DnaChisel"; 23 rev = "refs/tags/v${version}"; 24 - hash = "sha256-YlNOvK7ZXUHYdRX1NFEdZ646NGLtGXU1YgAjN6RY2QE="; 25 }; 26 27 propagatedBuildInputs = [ ··· 50 "test_avoid_phage_blast_matches" 51 "test_avoid_matches_with_list" 52 "test_avoid_matches_with_phage" 53 - ]; 54 - pythonImportsCheck = [ "dnachisel" ]; 55 56 meta = with lib; { 57 homepage = "https://github.com/Edinburgh-Genome-Foundry/DnaChisel"; 58 description = "Optimize DNA sequences under constraints"; 59 license = licenses.mit; 60 maintainers = with maintainers; [ prusnak ]; 61 };
··· 7 , numpy 8 , proglog 9 , pytestCheckHook 10 + , pythonOlder 11 , python-codon-tables 12 , primer3 13 , genome-collector ··· 16 17 buildPythonPackage rec { 18 pname = "dnachisel"; 19 + version = "3.2.11"; 20 + format = "setuptools"; 21 + 22 + disabled = pythonOlder "3.7"; 23 24 src = fetchFromGitHub { 25 owner = "Edinburgh-Genome-Foundry"; 26 repo = "DnaChisel"; 27 rev = "refs/tags/v${version}"; 28 + hash = "sha256-rcZq/HhU1xIyQ1jM8+gO9ONDLBAxiUIByoWk2nMwuGA="; 29 }; 30 31 propagatedBuildInputs = [ ··· 54 "test_avoid_phage_blast_matches" 55 "test_avoid_matches_with_list" 56 "test_avoid_matches_with_phage" 57 + ]; 58 + 59 + pythonImportsCheck = [ 60 + "dnachisel" 61 + ]; 62 63 meta = with lib; { 64 homepage = "https://github.com/Edinburgh-Genome-Foundry/DnaChisel"; 65 description = "Optimize DNA sequences under constraints"; 66 + changelog = "https://github.com/Edinburgh-Genome-Foundry/DnaChisel/releases/tag/v${version}"; 67 license = licenses.mit; 68 maintainers = with maintainers; [ prusnak ]; 69 };