mirror of
https://github.com/tahoe-lafs/tahoe-lafs.git
synced 2024-12-19 13:07:56 +00:00
56 lines
1.6 KiB
Nix
56 lines
1.6 KiB
Nix
{ fetchFromGitHub, lib
|
|
, python
|
|
, twisted, foolscap, zfec
|
|
, setuptools, setuptoolsTrial, pyasn1, zope_interface
|
|
, service-identity, pyyaml, magic-wormhole, treq, appdirs
|
|
, beautifulsoup4, eliot, autobahn, cryptography, netifaces
|
|
, html5lib, pyutil, distro, configparser
|
|
}:
|
|
python.pkgs.buildPythonPackage rec {
|
|
version = "1.14.0.dev";
|
|
name = "tahoe-lafs-${version}";
|
|
src = lib.cleanSource ../.;
|
|
|
|
postPatch = ''
|
|
# Chroots don't have /etc/hosts and /etc/resolv.conf, so work around
|
|
# that.
|
|
for i in $(find src/allmydata/test -type f)
|
|
do
|
|
sed -i "$i" -e"s/localhost/127.0.0.1/g"
|
|
done
|
|
|
|
# Some tests are flaky or fail to skip when dependencies are missing.
|
|
# This list is over-zealous because it's more work to disable individual
|
|
# tests with in a module.
|
|
|
|
# Many of these tests don't properly skip when i2p or tor dependencies are
|
|
# not supplied (and we are not supplying them).
|
|
rm src/allmydata/test/test_i2p_provider.py
|
|
rm src/allmydata/test/test_connections.py
|
|
rm src/allmydata/test/cli/test_create.py
|
|
rm src/allmydata/test/test_client.py
|
|
'';
|
|
|
|
|
|
propagatedBuildInputs = with python.pkgs; [
|
|
twisted foolscap zfec appdirs
|
|
setuptoolsTrial pyasn1 zope_interface
|
|
service-identity pyyaml magic-wormhole treq
|
|
eliot autobahn cryptography netifaces setuptools
|
|
future pyutil distro configparser
|
|
];
|
|
|
|
checkInputs = with python.pkgs; [
|
|
hypothesis
|
|
testtools
|
|
fixtures
|
|
beautifulsoup4
|
|
html5lib
|
|
tenacity
|
|
];
|
|
|
|
checkPhase = ''
|
|
${python}/bin/python -m twisted.trial -j $NIX_BUILD_CORES allmydata
|
|
'';
|
|
}
|