mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2025-01-01 08:25:55 +03:00
Merge staging-next into staging
This commit is contained in:
commit
a7d4f484ba
@ -46,7 +46,6 @@ let
|
||||
configureScript = {
|
||||
armv6l-linux = "./Configure linux-armv4 -march=armv6";
|
||||
armv7l-linux = "./Configure linux-armv4 -march=armv7-a";
|
||||
i686-linux = "./Configure linux-x86";
|
||||
x86_64-darwin = "./Configure darwin64-x86_64-cc";
|
||||
x86_64-linux = "./Configure linux-x86_64";
|
||||
x86_64-solaris = "./Configure solaris64-x86_64-gcc";
|
||||
|
@ -2,7 +2,6 @@
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, python
|
||||
, isPy27
|
||||
, zope_interface
|
||||
, incremental
|
||||
, automat
|
||||
@ -18,7 +17,6 @@
|
||||
buildPythonPackage rec {
|
||||
pname = "Twisted";
|
||||
version = "19.7.0";
|
||||
disabled = isPy27; # ruamel namespace now conflicts in python27
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
@ -41,7 +39,9 @@ buildPythonPackage rec {
|
||||
# http://twistedmatrix.com/documents/current/core/howto/plugin.html#auto3
|
||||
# and http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=477103 for
|
||||
# details.
|
||||
postInstall = "$out/bin/twistd --help > /dev/null";
|
||||
postFixup = ''
|
||||
$out/bin/twistd --help > /dev/null
|
||||
'';
|
||||
|
||||
checkPhase = ''
|
||||
${python.interpreter} -m unittest discover -s twisted/test
|
||||
|
Loading…
Reference in New Issue
Block a user