···30buildPythonPackage rec {
31 name = "${pname}-${version}";
32 pname = "Nikola";
33- version = "7.8.10";
3435 # Nix contains only Python 3 supported version of doit, which is a dependency
36 # of Nikola. Python 2 support would require older doit 0.29.0 (which on the
···4748 src = fetchPypi {
49 inherit pname version;
50- sha256 = "e242c3d0dd175d95a0baf5268b108081ba160b83ceafec8c9bc2ec0a24a56537";
51 };
5253 meta = {
···30buildPythonPackage rec {
31 name = "${pname}-${version}";
32 pname = "Nikola";
33+ version = "7.8.11";
3435 # Nix contains only Python 3 supported version of doit, which is a dependency
36 # of Nikola. Python 2 support would require older doit 0.29.0 (which on the
···4748 src = fetchPypi {
49 inherit pname version;
50+ sha256 = "10d95b3af84e61496ef729665eafa2235fd0fd4cc6c57644dd0f2c19a968dd0f";
51 };
5253 meta = {
···1+{ lib
2+, buildPythonPackage
3+, fetchPypi
4+, numpy
5+}:
6+7+buildPythonPackage rec {
8+ pname = "biopython";
9+ version = "1.70";
10+11+ src = fetchPypi {
12+ inherit pname version;
13+ sha256 = "4a7c5298f03d1a45523f32bae1fffcff323ea9dce007fb1241af092f5ab2e45b";
14+ };
15+16+ propagatedBuildInputs = [ numpy ];
17+ # Checks try to write to $HOME, which does not work with nix
18+ doCheck = false;
19+ meta = {
20+ description = "Python library for bioinformatics";
21+ longDescription = ''
22+ Biopython is a set of freely available tools for biological computation
23+ written in Python by an international team of developers. It is a
24+ distributed collaborative effort to develop Python libraries and
25+ applications which address the needs of current and future work in
26+ bioinformatics.
27+ '';
28+ homepage = http://biopython.org/wiki/Documentation;
29+ maintainers = with lib.maintainers; [ luispedro ];
30+ license = lib.licenses.bsd3;
31+ };
32+}
···1{ stdenv, buildPythonPackage, fetchPypi }:
2buildPythonPackage rec {
3 pname = "htmlmin";
4- version = "0.1.11";
5 name = "${pname}-${version}";
6 src = fetchPypi {
7 inherit pname version;
8- sha256 = "f27fb96fdddeb1725ee077be532c7bea23288c69d0e996e7798f24fae7a14e5e";
9 };
1011 # Tests run fine in a normal source checkout, but not when being built by nix.
···1{ stdenv, buildPythonPackage, fetchPypi }:
2buildPythonPackage rec {
3 pname = "htmlmin";
4+ version = "0.1.12";
5 name = "${pname}-${version}";
6 src = fetchPypi {
7 inherit pname version;
8+ sha256 = "50c1ef4630374a5d723900096a961cff426dff46b48f34d194a81bbe14eca178";
9 };
1011 # Tests run fine in a normal source checkout, but not when being built by nix.
···1{ stdenv, fetchPypi, buildPythonPackage, lib }:
23buildPythonPackage rec {
4- version = "3.8.3";
5 pname = "thespian";
6 name = "${pname}-${version}";
78 src = fetchPypi {
9 inherit pname version;
10 extension = "zip";
11- sha256 = "0vvwsh3waxd5ldrayr86kdcshv07bp361fl7p16g9i044vklwly4";
12 };
1314 # Do not run the test suite: it takes a long type and uses
···1{ stdenv, fetchPypi, buildPythonPackage, lib }:
23buildPythonPackage rec {
4+ version = "3.9.0";
5 pname = "thespian";
6 name = "${pname}-${version}";
78 src = fetchPypi {
9 inherit pname version;
10 extension = "zip";
11+ sha256 = "e698e3c5369d7b06de5c4ce7b877ea65991c99f7b0fabd09f29e91bc981c7d22";
12 };
1314 # Do not run the test suite: it takes a long type and uses